diff --git a/DigitalLearningSolutions.Data/DataServices/SelfAssessmentDataService/SelfAsssessmentReportDataService.cs b/DigitalLearningSolutions.Data/DataServices/SelfAssessmentDataService/SelfAsssessmentReportDataService.cs index d5f56385e1..c46ffd6a39 100644 --- a/DigitalLearningSolutions.Data/DataServices/SelfAssessmentDataService/SelfAsssessmentReportDataService.cs +++ b/DigitalLearningSolutions.Data/DataServices/SelfAssessmentDataService/SelfAsssessmentReportDataService.cs @@ -47,8 +47,9 @@ public IEnumerable GetSelfAssessmentReportDataForCentr { return connection.Query("usp_GetSelfAssessmentReport", new { selfAssessmentId, centreId }, - commandType: CommandType.StoredProcedure + commandType: CommandType.StoredProcedure, + commandTimeout: 150 ); } - } + } }