SEBSERV-580 fixed by skip active testing for Exam without LMS
This commit is contained in:
parent
bb0df16a56
commit
9e5a0085b3
2 changed files with 3 additions and 2 deletions
|
@ -100,7 +100,7 @@ public interface ScreenProctoringService extends SessionUpdateTask {
|
|||
void updateClientConnections();
|
||||
|
||||
/** This goes through all running exams with screen proctoring enabled and updates the group attributes
|
||||
* (mainly the number of active clients in the group) by call ing SPS API and store newest data. */
|
||||
* (mainly the number of active clients in the group) by calling SPS API and store newest data. */
|
||||
void updateActiveGroups();
|
||||
|
||||
@Async(AsyncServiceSpringConfig.EXECUTOR_BEAN_NAME)
|
||||
|
|
|
@ -577,6 +577,7 @@ public class ScreenProctoringServiceImpl implements ScreenProctoringService {
|
|||
log.debug("Register JOIN instruction for client ");
|
||||
}
|
||||
|
||||
final boolean checkActive = exam.lmsSetupId != null;
|
||||
final SPSData spsData = this.screenProctoringAPIBinding.getSPSData(exam.id);
|
||||
final String url = screenProctoringServiceBundle.bundled
|
||||
? screenProctoringServiceBundle.serviceURL
|
||||
|
@ -597,7 +598,7 @@ public class ScreenProctoringServiceImpl implements ScreenProctoringService {
|
|||
InstructionType.SEB_PROCTORING,
|
||||
attributes,
|
||||
ccRecord.getConnectionToken(),
|
||||
true,
|
||||
checkActive,
|
||||
true)
|
||||
.onError(error -> log.error(
|
||||
"Failed to register screen proctoring join instruction for SEB connection: {}",
|
||||
|
|
Loading…
Add table
Reference in a new issue