Skip to content

Commit

Permalink
fix(function): make sure its the right event hub name
Browse files Browse the repository at this point in the history
  • Loading branch information
pbullhove committed Oct 9, 2024
1 parent 60f1437 commit 064137d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataGeneratorFunction/DataGeneratorFunction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public DataGeneratorFunction(ILoggerFactory loggerFactory)
}

[Function("DataGeneratorFunction")]
[EventHubOutput("dev-aquaplatform-ehn", Connection = "EventHubConnectionString")]
[EventHubOutput("dev-aquaplatform-eventhub", Connection = "EventHubConnectionString")]
public string Run([TimerTrigger("*/1 * * * * *")] TimerInfo myTimer)
{
_logger.LogInformation($"C# Timer trigger function executed at: {DateTime.Now}");
Expand Down

0 comments on commit 064137d

Please sign in to comment.