Skip to content

Commit d961973

Browse files
committed
save
1 parent d060215 commit d961973

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

samples/ScheduleDemo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
ScheduleCreationOptions scheduleOptions = new ScheduleCreationOptions
9090
{
9191
OrchestrationName = "DemoOrchestration",
92-
ScheduleId = "demo-schedule13",
92+
ScheduleId = "demo-schedule14",
9393
Interval = TimeSpan.FromSeconds(4),
9494
StartAt = DateTimeOffset.UtcNow,
9595
OrchestrationInput = "MSFT"

src/ScheduledTasks/Models/ScheduleCreationOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ public string OrchestrationName
3535
public string? OrchestrationInput { get; init; }
3636

3737
/// <summary>
38-
/// Gets the instance ID of the orchestration function, if not provided, default to a new GUID.
38+
/// Gets the instance ID of the orchestration function.
3939
/// </summary>
40-
public string OrchestrationInstanceId { get; init; } = Guid.NewGuid().ToString("N");
40+
public string? OrchestrationInstanceId { get; init; }
4141

4242
/// <summary>
4343
/// Gets the start time of the schedule.

0 commit comments

Comments
 (0)