Skip to content

Commit

Permalink
Development: Fix default URL for telemetry service (#9382)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-fein authored and krusche committed Sep 29, 2024
1 parent 6e49e70 commit 6993199
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/admin/telemetry.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Example configuration in `application-prod.yml`:
telemetry:
enabled: true
sendAdminDetails: false
destination: telemetry.artemis.cit.tum.de
destination: https://telemetry.artemis.cit.tum.de
info:
contact: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,4 +146,4 @@ artemis:
telemetry:
enabled: false # Disable sending any telemetry information to the telemetry service by setting this to false
sendAdminDetails: false # Include the admins email and name in the telemetry data. Set to false to disable
destination: telemetry.artemis.cit.tum.de
destination: https://telemetry.artemis.cit.tum.de
2 changes: 1 addition & 1 deletion src/main/resources/config/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ artemis:
telemetry:
enabled: true # Disable sending any telemetry information to the telemetry service by setting this to false
sendAdminDetails: true # Include personal identifiable information of the admin, including email and name in the telemetry data
destination: telemetry.artemis.cit.tum.de
destination: https://telemetry.artemis.cit.tum.de

spring:
devtools:
Expand Down

0 comments on commit 6993199

Please sign in to comment.