azure - Retrieving function app settings on commandline includes removed items -
i'm downloading app settings via batch file. use command:
func azure functionapp fetch-app-settings myfuncapp
it works great. noticed if delete key/value pair in azure, save it, , redownload app settings, still includes deleted pair. tried few more times, , each time, deleted values still show when download app settings. known issue? or there i'm missing in regards downloading app settings?
the cli doesn't merge these settings. can take @ code here, grabs app settings azure , adds or updates local values match azure. if have value locally doesn't exist in azure, it'll leave alone.
you can either delete manually file local.settings.json
or can use command func settings delete <settingname>
Comments
Post a Comment