We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e7903f commit 1a85374Copy full SHA for 1a85374
articles/communication-services/how-tos/router-sdk/scheduled-jobs.md
@@ -152,9 +152,9 @@ if (eventGridEvent.EventType == "Microsoft.Communication.RouterJobWaitingForActi
152
{
153
// Perform required actions here
154
155
- client.updateJob(new RouterJob(eventGridEvent.Data.JobId)
+ client.updateJob(eventGridEvent.Data.JobId, BinaryData.fromObject(new RouterJob()
156
.setMatchingMode(new QueueAndMatchMode())
157
- .setPriority(100));
+ .setPriority(100)), null);
158
}
159
```
160
0 commit comments