mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-19 13:03:44 +00:00
always set SignalR events at the end of handlers (#445)
Addresses an issue where events meant for SignalR do not get sent to the service when an App Service instance spins down before a timer event fires.
This commit is contained in:
@ -1,17 +1,17 @@
|
||||
{
|
||||
"bindings": [
|
||||
{
|
||||
"direction": "in",
|
||||
"name": "mytimer",
|
||||
"schedule": "00:00:15",
|
||||
"type": "timerTrigger"
|
||||
},
|
||||
{
|
||||
"type": "signalR",
|
||||
"direction": "out",
|
||||
"name": "dashboard",
|
||||
"hubName": "dashboard"
|
||||
}
|
||||
],
|
||||
"scriptFile": "__init__.py"
|
||||
}
|
||||
"bindings": [
|
||||
{
|
||||
"direction": "in",
|
||||
"name": "mytimer",
|
||||
"schedule": "00:00:15",
|
||||
"type": "timerTrigger"
|
||||
},
|
||||
{
|
||||
"type": "signalR",
|
||||
"direction": "out",
|
||||
"name": "dashboard",
|
||||
"hubName": "dashboard"
|
||||
}
|
||||
],
|
||||
"scriptFile": "__init__.py"
|
||||
}
|
||||
|
Reference in New Issue
Block a user