Skip to content
Snippets Groups Projects
Commit af230466 authored by Martin Juhás's avatar Martin Juhás
Browse files

Fix types

parent ce07bf0a
No related branches found
No related tags found
2 merge requests!119Develop,!115Fix types
Pipeline #205798 passed with stages
in 3 minutes and 42 seconds
......@@ -243,7 +243,7 @@ public class TrainingRunService {
Long userId = run.getParticipantRef().getUserRefId();
runCommands = elasticsearchServiceApi.findAllConsoleCommandsByAccessTokenAndUserId(accessToken, userId);
} else {
Long sandboxId = run.getSandboxInstanceRefId() == null ? run.getPreviousSandboxInstanceRefId() : run.getSandboxInstanceRefId();
String sandboxId = run.getSandboxInstanceRefId() == null ? run.getPreviousSandboxInstanceRefId() : run.getSandboxInstanceRefId();
runCommands = elasticsearchServiceApi.findAllConsoleCommandsBySandbox(sandboxId);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment