Skip to content

Commit

Permalink
Reduced page size to try and stop timeouts saving events
Browse files Browse the repository at this point in the history
  • Loading branch information
hortha committed Dec 23, 2024
1 parent 95e2304 commit a4e552d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public SyncAllInductionsFromCrmJob(

public async Task ExecuteAsync(bool createMigratedEvent, bool dryRun, CancellationToken cancellationToken)
{
const int pageSize = 1000;
const int pageSize = 500;

var serviceClient = _crmServiceClientProvider.GetClient(TrsDataSyncService.CrmClientName);
var columns = new ColumnSet(TrsDataSyncHelper.GetEntityInfoForModelType(TrsDataSyncHelper.ModelTypes.Induction).AttributeNames);
Expand Down

0 comments on commit a4e552d

Please sign in to comment.