Trying to use the example code snippet:
builder.UseNServiceBus(ctx =>
{
var endpointConfig = new EndpointConfiguration("ConsoleEndpoint");
endpointConfig.UseTransport(new LearningTransport());
return endpointConfig;
});
It's not…
The functionTimeout parameter in my host.json file is set to "functionTimeout": "00:45:00"
I'm seeing timeouts happen every 45 minute interval.
When I dig into the timeouts through Application Insights, they have not been running for 45 minutes.…
I have an Azure Function with the ServiceBusTrigger trigger
it's configured to receive sessions, and when I insert the messages, it's inserting with the correct "SessionId".
But when executing the trigger it executes only one session message at a…
I am creating a timer trigger function that is going to do certain checks. If a certain conditional is hit, I want to send an email and have set this up through an Activity Trigger. I keep getting the error
The function 'activityTriggerName` doesn't…
I'm getting quite a few timeouts as my blob storage trigger is running. It seems to timeout whenever I'm inserting values into an Azure SQL DB. I have just raised the functionTimeout parameter in the host.json file to "functionTimeout": "00:40:00"…
I'm using a Blob trigger Azure function to get Blob files data whenever any file is uploaded to the Container.
public static void Run(Stream myBlob,string BlobTrigger,System.Uri uri, string name, ILogger log)
{
log.LogInformation($"C# Blob…
I have a function app with a time trigger that should run once per night. The function looks similar to this:
[FunctionName("XName")]
public async Task RunAsync(
[TimerTrigger("0 0 0 * * *", RunOnStartup = false)]
TimerInfo…
I am currently having troubles with connecting my function trigger to an IoT-Hub, overnight it broke somehow.
Function version 4.
Node.js version 14 LTS.
First I got an error saying I have to use web.jobs version 4.3.0, I changed the host.json to…
I've created a Pipeline that's executed by a trigger every time a blob is created, the problem is that are scenarios where the process needs to upload multiple files at the same time, when it happens, the pipeline executes as many times as the…
For example,
I have 2 queue triggers which are to be called by 2 different messages of queue trigger in Timer Trigger function. How do I call the triggers in the timer and automate the messages so that when Timer function is triggered and it…
I want add a functionality in my ADF pipeline which will send me email notification in case of failure. On searching the internet, I came to know that Azure Logic Apps helps with this. I am trying to follow below link to achieve…
I have read several guides on the subject, with no success.
The following guide gave me a lot of hints about a setup that I was simply not able to figure nor find in the official…