SEBSERV-451 fixed
This commit is contained in:
parent
87e24b3840
commit
aa0e3b3a47
2 changed files with 12 additions and 9 deletions
|
@ -643,12 +643,15 @@ public class ExamSessionServiceImpl implements ExamSessionService {
|
|||
|
||||
final ClientConnectionDataInternal cc = this.examSessionCacheService.getClientConnection(token);
|
||||
if (cc.clientConnection.status.duplicateCheckStatus) {
|
||||
final Long id = this.duplicateCheck.put(
|
||||
cc.clientConnection.userSessionId,
|
||||
cc.getConnectionId());
|
||||
if (id != null) {
|
||||
duplicates.add(id);
|
||||
duplicates.add(cc.getConnectionId());
|
||||
System.out.println("****** id: " + cc.clientConnection.userSessionId);
|
||||
if (cc.clientConnection.userSessionId != null) {
|
||||
final Long id = this.duplicateCheck.put(
|
||||
cc.clientConnection.userSessionId,
|
||||
cc.getConnectionId());
|
||||
if (id != null) {
|
||||
duplicates.add(id);
|
||||
duplicates.add(cc.getConnectionId());
|
||||
}
|
||||
}
|
||||
}
|
||||
return cc;
|
||||
|
|
|
@ -674,14 +674,14 @@ sebserver.exam.configuration.form.title.new=Add exam configuration mapping
|
|||
sebserver.exam.configuration.form.title=Exam Configuration Mapping
|
||||
sebserver.exam.configuration.form.name=Exam Configuration
|
||||
sebserver.exam.configuration.form.name.tooltip=Please select an exam configuration to attach to the exam
|
||||
sebserver.exam.configuration.form.encryptSecret=Encryption Password
|
||||
sebserver.exam.configuration.form.encryptSecret.tooltip=Define an encryption password if the exam configuration should be encrypted by password
|
||||
sebserver.exam.configuration.form.encryptSecret=Settings Password
|
||||
sebserver.exam.configuration.form.encryptSecret.tooltip=Define an encryption password if the exam configuration settings should be encrypted by password
|
||||
sebserver.exam.configuration.form.description=Description
|
||||
sebserver.exam.configuration.form.description.tooltip=The description of the selected exam configuration
|
||||
sebserver.exam.configuration.form.status=Status
|
||||
sebserver.exam.configuration.form.status.tooltip=The current status of the selected exam configuration
|
||||
sebserver.exam.configuration.form.encryptSecret.confirm=Confirm Password
|
||||
sebserver.exam.configuration.form.encryptSecret.confirm.tooltip=Please confirm the encryption password if there is one
|
||||
sebserver.exam.configuration.form.encryptSecret.confirm.tooltip=Please confirm the settings password if there is one
|
||||
|
||||
sebserver.exam.indicator.list.actions=
|
||||
sebserver.exam.indicator.list.title=Indicators
|
||||
|
|
Loading…
Reference in a new issue