Skip to content
This repository was archived by the owner on Aug 4, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,8 @@ private List<WorkloadInstance> GetSYSWorkloadInstancesPerLegalEntity(Workload wo

private static DateTime GetWorkloadEffectiveDate()
{
var effectiveDate = DateTime.UtcNow;
// Always adding 5 minutes to the effective date to mitigate Bug 616219 on the AX.
effectiveDate.AddMinutes(5);
var effectiveDate = DateTime.UtcNow.AddMinutes(5);
return effectiveDate;
}

Expand Down