Azure / feast-azure

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

Code for creating the container for the registry.db fails #7

Closed jcordtz closed 2 years ago

jcordtz commented 2 years ago

The code says that the subID is found by using the command

subid=$(az account show --query id)

which returns a subscription id in "", which will get the creation to fail.

So, the code could be to remove the ""

subId=`az account show --query id | sed -e "s/\"//g"`

samuel100 commented 2 years ago

fixed in PR: https://github.com/Azure/feast-azure/pull/10