Skip to content

Commit 899ae16

Browse files
authored
fix: add missing otel env var (#283)
1 parent eebf906 commit 899ae16

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/helpers/docker/docker-entrypoint.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,12 @@ then
389389
echo "webauthn_recover_account_token_lifetime: $WEBAUTHN_RECOVER_ACCOUNT_TOKEN_LIFETIME" >> $CONFIG_FILE
390390
fi
391391

392+
if [ ! -z $OTEL_COLLECTOR_CONNECTION_URI ]
393+
then
394+
echo "otel_collector_connection_uri: $OTEL_COLLECTOR_CONNECTION_URI" >> $CONFIG_FILE
395+
fi
396+
397+
392398
fi
393399

394400
# check if no options has been passed to docker run

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [4.0.7]
11+
12+
- Adds opentelemetry collector uri env var.
13+
1014
## [4.0.5] - 2024-03-21
1115

1216
- Fixes user id mapping queries

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "4.0.6"
5+
version = "4.0.7"
66

77
repositories {
88
mavenCentral()

0 commit comments

Comments
 (0)