Skip to content

Commit

Permalink
remove(tests): remove telemetry configuration property (#4544)
Browse files Browse the repository at this point in the history
* remove telemetry configuration property from `quarkus-extension` as it no longer exist
* exclude telemetry test in `old-engine` setup as telemetry feature is removed in newer versions; during rolling update users run old engine and data with new schema, so the test is not relevant for the scenario

#4483
  • Loading branch information
yanavasileva authored Aug 23, 2024
1 parent c28764a commit abf8f55
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
3 changes: 3 additions & 0 deletions qa/test-old-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,9 @@

<exclude>**/ManagementServiceTableCountTest.java</exclude>

<!-- The test is not relevant in `old-engine` setup since the feature has been removed -->
<!-- See https://github.com/camunda/camunda-bpm-platform/pull/4544#discussion_r1728748399 -->
<exclude>**/ConcurrentTelemetryConfigurationTest.java</exclude>
</excludes>
<testFailureIgnore>false</testFailureIgnore>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
Expand Down
1 change: 0 additions & 1 deletion quarkus-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ can look like the following:
quarkus.camunda.cmmn-enabled=false
quarkus.camunda.dmn-enabled=false
quarkus.camunda.history=none
quarkus.camunda.initialize-telemetry=false

# job executor configuration
quarkus.camunda.job-executor.thread-pool.max-pool-size=12
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ quarkus.camunda.cmmn-enabled=false
quarkus.camunda.dmn-enabled=false
quarkus.camunda.history=none
quarkus.camunda.enforce-history-time-to-live=false
quarkus.camunda.initialize-telemetry=false

quarkus.camunda.job-executor.thread-pool.max-pool-size=12
quarkus.camunda.job-executor.thread-pool.queue-size=5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ quarkus.camunda.cmmn-enabled=false
quarkus.camunda.dmn-enabled=false
quarkus.camunda.history=none
quarkus.camunda.enforce-history-time-to-live=false
quarkus.camunda.initialize-telemetry=false

quarkus.datasource.jdbc.url=jdbc:h2:mem:camunda;TRACE_LEVEL_FILE=0;DB_CLOSE_ON_EXIT=FALSE

0 comments on commit abf8f55

Please sign in to comment.