-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
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
Blob trigger function runs in Azure CLI and does not run in cloud #174
Comments
@dimatomp Could you please try to set the You can find this kay-value pair in the Function App's |
@jdneo Thanks, it solved my problem, I will use this workaround for a while. |
@dimatomp This is due to the service side change recently. Maven tooling is trying to release a fix. I will notice you when it's published. Sorry for the inconvenience. |
@dimatomp The new Maven Tooling is released. Please have a try when you have time. You can find more details here: Azure/app-service-announcements-discussions#50 (comment) |
@jdneo I've changed |
Hmm, but it also finds no functions during |
@dimatomp I see. Sorry I didn't make it clear. Guess this is because the artifact and package names have been changed. Please take a look at this issue for details: Azure/app-service-announcements#112 (comment). Basically some of the source code and the dependency in pom.xml need to be changed. |
@jdneo I've successfully migrated the app according to these instructions. Thank you very much for help! |
A blob trigger with the following Kotlin signature runs on local machine and ignores the created blobs in Azure cloud.
Plugin name and version
azure-functions-maven-plugin:1.0.0-beta-1
Plugin configuration in your
pom.xml
Expected behavior
The blob trigger runs both on local machine and in Azure cloud.
Actual behavior
The created blobs are ignored by deployed app (or maybe it will throw
NoSuchMethodException
).Steps to reproduce the problem
local.settings.json
with appropriateAzureWebJobsStorage
andAzureWebJobsDashboard
mvn package azure-functions:run
container/<your string>/daemon.lock
, observe that the function is triggeredmvn azure-functions:deploy
, create App Insights for the function appThe text was updated successfully, but these errors were encountered: