Skip to content

Commit

Permalink
Update to Camunda 7.21
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasschaefer committed Apr 27, 2024
1 parent 89a43f7 commit afecc43
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ micronautLibraryPluginVersion=3.7.10
jettyVersion=9.4.49.v20220914
tomcatVersion=9.0.65
undertowVersion=2.2.18.Final
camundaVersion=7.20.0
camundaVersion=7.21.0
# Latest Jersey, that implements JAX-RS 2.1 API: see https://eclipse-ee4j.github.io/jersey/download.html
jerseyVersion=2.39.1
# Prevent upload of maven-metadata.xml.sha256/sha512 files to oss.sonatype.org
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,8 @@ protected void configureTelemetry() {
} else if ( Boolean.TRUE.equals(isInitializeTelemetry()) && isTelemetryReporterActivate() && !camundaVersion.getVersion().isPresent() ) {
log.warn("Disabling TelemetryReporter because required information 'Camunda Version' is not available.");
setTelemetryReporterActivate(false);
} else {
setInitializeTelemetry(true);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class MnProcessEngineConfigurationTelemetryTest {
ApplicationContext.builder().deduceEnvironment(test).build().start().use { applicationContext ->
val pec = applicationContext.getBean(ProcessEngine::class.java).processEngineConfiguration as ProcessEngineConfigurationImpl
assertEquals(!test, pec.isTelemetryReporterActivate)
assertEquals(if (test) false else null, pec.isInitializeTelemetry)
assertEquals(!test, pec.isInitializeTelemetry)
}
}

Expand Down

0 comments on commit afecc43

Please sign in to comment.