Skip to content

Commit 7a10644

Browse files
authored
Merge pull request #3317 from TechnologyEnhancedLearning/DLS-Release-v1.2.1-Hotfix
TD-5759 Increase query command timeout
2 parents b12fa66 + 09f0560 commit 7a10644

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)