File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
scenariorun/src/main/kotlin/com/cosmotech/scenariorun/workflow/argo Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -374,6 +374,8 @@ subprojects {
374374
375375 if (project.hasProperty(" jvmArgs" )) {
376376 jvmArgs = project.property(" jvmArgs" ).toString().split(" \\ s+" .toRegex()).toList()
377+ } else {
378+ jvmArgs = mutableListOf (" --add-opens" , " java.base/java.time=ALL-UNNAMED" )
377379 }
378380
379381 args = listOf (" --spring.profiles.active=dev" )
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import com.cosmotech.scenariorun.domain.ScenarioRunStatus
1212import com.cosmotech.scenariorun.domain.ScenarioRunStatusNode
1313import com.cosmotech.scenariorun.workflow.WorkflowService
1414import com.cosmotech.scenariorun.workflow.WorkflowStatusAndArtifact
15+ import com.google.gson.Gson
1516import io.argoproj.workflow.ApiClient
1617import io.argoproj.workflow.ApiException
1718import io.argoproj.workflow.Configuration
@@ -194,7 +195,7 @@ internal class ArgoWorkflowService(
194195 .workflow(
195196 buildWorkflow(csmPlatformProperties, scenarioRunStartContainers, executionTimeout))
196197
197- logger.trace(" Workflow: {}" , body.workflow)
198+ logger.trace(" Workflow: {}" , Gson ().toJson( body.workflow) )
198199
199200 try {
200201 val workflow =
You can’t perform that action at this time.
0 commit comments