Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update kanela-agent version in starter scripts to match the version set in pom.xml #2730

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eclair-front/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
<dependency>
<groupId>io.kamon</groupId>
<artifactId>kanela-agent</artifactId>
<!-- if you change this make sure to also update the lib version in eclair-front.sh and eclair-node.sh -->
<version>1.0.17</version>
</dependency>
<!-- tests -->
Expand Down
3 changes: 2 additions & 1 deletion eclair-front/src/main/resources/eclair-front.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ addDebugger () {
}

addKanelaAgent () {
addJava "-javaagent:$lib_dir/kanela-agent-1.0.5.jar"
# make sure that the lib version matches the one defined in pom.xml
addJava "-javaagent:$lib_dir/kanela-agent-1.0.17.jar"
}

require_arg () {
Expand Down
3 changes: 2 additions & 1 deletion eclair-node/src/main/resources/eclair-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ addDebugger () {
}

addKanelaAgent () {
addJava "-javaagent:$lib_dir/kanela-agent-1.0.5.jar"
# make sure that the lib version matches the one defined in pom.xml
addJava "-javaagent:$lib_dir/kanela-agent-1.0.17.jar"
}

require_arg () {
Expand Down