Azure / azure-functions-dotnet-worker

Azure Functions out-of-process .NET language worker
MIT License
413 stars 178 forks source link

Queue Trigger > Allow 'none' encoding on a single function Queue Trigger #2627

Open ComtelJeremy opened 1 month ago

ComtelJeremy commented 1 month ago

Description

We have an outside service that is able to push directly to our Azure Queue, which eliminates the need for us to run a seperate HTTP function to receive messages. However, they do not base64 encode their message. It would be helpful to allow a single queue trigger to receive a non-encoded message (rather than changing the host.json and changing it for the entire function app). Is this possible, or am I perhaps missing some feature that already exists?

sravanreddy6745 commented 1 month ago

Do you want the queue trigger function to receive the encoded message?

ComtelJeremy commented 1 month ago

No, we would like the queue trigger to receive the un-encoded message. We want the rest of the functions in the app to use base64 encoding, as is standard.