Skip to content

Commit 09f0560

Browse files
committed
Increase query command timeout
1 parent 63b8659 commit 09f0560

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

DigitalLearningSolutions.Data/DataServices/SelfAssessmentDataService/SelfAsssessmentReportDataService.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ public IEnumerable<SelfAssessmentReportData> GetSelfAssessmentReportDataForCentr
4747
{
4848
return connection.Query<SelfAssessmentReportData>("usp_GetSelfAssessmentReport",
4949
new { selfAssessmentId, centreId },
50-
commandType: CommandType.StoredProcedure
50+
commandType: CommandType.StoredProcedure,
51+
commandTimeout: 150
5152
);
5253
}
53-
}
54+
}
5455
}

0 commit comments

Comments
 (0)