Skip to content

Commit

Permalink
ci: fix whaterver type
Browse files Browse the repository at this point in the history
fix(function): make sure its the right event hub name
  • Loading branch information
pbullhove committed Oct 27, 2024
1 parent 6f3ec84 commit 20e0ad3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-data-generation-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
shell: pwsh
run: |
pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}'
dotnet publishw --configuration Release --output ./output
dotnet publish --configuration Release --output ./output
popd
- name: 'Run Azure Functions Action'
Expand Down
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 20e0ad3

Please sign in to comment.