Azure / feast-azure

Azure plugins for Feast (FEAture STore)
MIT License
82 stars 52 forks source link

Issue in tutorial code for generating the Azure environment #6

Closed jcordtz closed 3 years ago

jcordtz commented 3 years ago

In the code for creating the blob storage the name includes a "-", this is not an accepted blob storage name.

The code says

# a blob account name storageAccountName=fsblob-$RANDOM echo "Variable storageAccountName is set to $storageAccountName"

It should say

# a blob account name storageAccountName=fsblob$RANDOM echo "Variable storageAccountName is set to $storageAccountName"

samuel100 commented 3 years ago

Thanks! Fixed in PR https://github.com/Azure/feast-azure/pull/10