Skip to content

Commit 6f12429

Browse files
LNK-4765: Fix Report Scheduled Event
1 parent 13ec9df commit 6f12429

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

DotNet/Tenant/Jobs/ReportScheduledJob.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ public async Task Execute(IJobExecutionContext context)
101101
ReportTypes = reportTypes,
102102
Frequency = frequency,
103103
StartDate = startDate,
104-
EndDate = endDate
104+
EndDate = endDate,
105+
ReportTrackingId = correlationId
105106
},
106107
};
107108

DotNet/Tenant/Models/Messages/ReportScheduledMessage.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ public class ReportScheduledMessage
66
public string Frequency { get; set; }
77
public DateTime StartDate { get; set; }
88
public DateTime EndDate { get; set; }
9-
9+
public string? ReportTrackingId { get; set; }
10+
1011
}

0 commit comments

Comments
 (0)