You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Point-in-time not getting scheduled, job payload not being property set on job invocation
When setting a single point-in-time job, the SDK was incorrectly assigning it as a schedule which would promptly fail cron validation. Rather, this now properly sets it to `dueTime` instead. Further, when a Job is invoked, only the payload it was registered with is provided in the callback, not all the elements of a Get Job response, so this was modified to return the `ReadOnlyMemory<byte>` originally provided in the payload back to the caller.
Reviewed by: @philliphoff
Refs: #1455#1457
Copy file name to clipboardexpand all lines: daprdocs/content/en/dotnet-sdk-docs/dotnet-jobs/dotnet-jobs-howto.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -63,8 +63,8 @@ the dependency injection registration in `Program.cs`, add the following line:
63
63
```cs
64
64
varbuilder=WebApplication.CreateBuilder(args);
65
65
66
-
//Add anywhere between these two
67
-
builder.Services.AddDaprJobsClient();//That's it
66
+
//Add anywhere between these two lines
67
+
builder.Services.AddDaprJobsClient();
68
68
69
69
varapp=builder.Build();
70
70
```
@@ -203,7 +203,8 @@ public class MySampleClass
203
203
It's easy to set up a jobs endpoint if you're at all familiar with [minimal APIs in ASP.NET Core](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/minimal-apis/overview) as the syntax is the same between the two.
204
204
205
205
Once dependency injection registration has been completed, configure the application the same way you would to handle mapping an HTTP request via the minimal API functionality in ASP.NET Core. Implemented as an extension method,
206
-
pass the name of the job it should be responsive to and a delegate. Services can be injected into the delegate's arguments as you wish and you can optionally pass a `JobDetails` to get information about the job that has been triggered (e.g. access its scheduling setup or payload).
206
+
pass the name of the job it should be responsive to and a delegate. Services can be injected into the delegate's arguments as you wish and the job payload can be accessed from the `ReadOnlyMemory<byte>` originally provided to the
207
+
job registration.
207
208
208
209
There are two delegates you can use here. One provides an `IServiceProvider` in case you need to inject other services into the handler:
0 commit comments