minor bugifx
This commit is contained in:
parent
f5964216c4
commit
4811d88940
2 changed files with 3 additions and 1 deletions
|
@ -18,6 +18,8 @@
|
|||
<exclude name="AvoidFieldNameMatchingMethodName"/>
|
||||
<exclude name="NullAssignment"/>
|
||||
<exclude name="AvoidLiteralsInIfCondition"/>
|
||||
<exclude name="InvalidSlf4jMessageFormat"/>
|
||||
<exclude name="DataflowAnomalyAnalysis"/>
|
||||
</rule>
|
||||
|
||||
</ruleset>
|
||||
|
|
|
@ -300,7 +300,7 @@ public class SebClientLogs implements TemplateComposer {
|
|||
.withURIVariable(API.PARAM_MODEL_ID, String.valueOf(clientEvent.connectionId))
|
||||
.call()
|
||||
.get(
|
||||
error -> log.error("Failed to get Exam for id {}", clientEvent.examId, error),
|
||||
error -> log.error("Failed to get ClientConnection for id {}", clientEvent.connectionId, error),
|
||||
() -> ClientConnection.EMPTY_CLIENT_CONNECTION);
|
||||
|
||||
this.pageService.formBuilder(pc.copyOf(content), 3)
|
||||
|
|
Loading…
Reference in a new issue