We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microsoft.Azure.Functions.Worker
1.4.0
1.0.0
docker build -t nachiappan/function-issue-demo:bug .
docker push nachiappan/function-issue-demo:bug
az group create --name NachiFuncDemo --location westeurope
az storage account create --name nachistoragedemoforfunc --location westeurope --resource-group NachiFuncDemo --sku Standard_LRS
az functionapp plan create -g NachiFuncDemo -n FunctionAppPlan --sku EP1 --is-linux true
az functionapp create --name nachifunctionissuedemo --storage-account nachistoragedemoforfunc --resource-group NachiFuncDemo -p FunctionAppPlan --functions-version 3 --runtime dotnet-isolated --deployment-container-image-name docker.io/nachiappan/function-issue-demo:bug
https://nachifunctionissuedemo.azurewebsites.net/api/HttpTriggeredFunction?
func-tool-bug.csproj
docker build -t nachiappan/function-issue-demo:nobug .
docker push nachiappan/function-issue-demo:nobug
az functionapp create --name nachifunctionissuedemo --storage-account nachistoragedemoforfunc --resource-group NachiFuncDemo -p FunctionAppPlan --functions-version 3 --runtime dotnet-isolated --deployment-container-image-name docker.io/nachiappan/function-issue-demo:nobug
The text was updated successfully, but these errors were encountered:
I believe you're hitting the same issue as #524. Can you try the workaround there and see if that fixes it?
Sorry, something went wrong.
brettsam
Successfully merging a pull request may close this issue.
Microsoft.Azure.Functions.Worker
version1.4.0
Microsoft.Azure.Functions.Worker
version1.0.0
Steps to reproduce the issue
Prerequisites
Run the below commands from root of repo after logging in to azure (az login) and docker (docker login)
docker build -t nachiappan/function-issue-demo:bug .
docker push nachiappan/function-issue-demo:bug
az group create --name NachiFuncDemo --location westeurope
az storage account create --name nachistoragedemoforfunc --location westeurope --resource-group NachiFuncDemo --sku Standard_LRS
az functionapp plan create -g NachiFuncDemo -n FunctionAppPlan --sku EP1 --is-linux true
az functionapp create --name nachifunctionissuedemo --storage-account nachistoragedemoforfunc --resource-group NachiFuncDemo -p FunctionAppPlan --functions-version 3 --runtime dotnet-isolated --deployment-container-image-name docker.io/nachiappan/function-issue-demo:bug
Reach the URL
https://nachifunctionissuedemo.azurewebsites.net/api/HttpTriggeredFunction?
Expected
Actual
Work around
func-tool-bug.csproj
downgrade the version ofMicrosoft.Azure.Functions.Worker
to1.0.0
docker build -t nachiappan/function-issue-demo:nobug .
docker push nachiappan/function-issue-demo:nobug
az functionapp create --name nachifunctionissuedemo --storage-account nachistoragedemoforfunc --resource-group NachiFuncDemo -p FunctionAppPlan --functions-version 3 --runtime dotnet-isolated --deployment-container-image-name docker.io/nachiappan/function-issue-demo:nobug
Other Observation
The text was updated successfully, but these errors were encountered: