Skip to content

Commit

Permalink
Update kanela-agent version in starter scripts to match the version s…
Browse files Browse the repository at this point in the history
…et in pom.xml (#2730)
  • Loading branch information
sstone committed Aug 29, 2023
1 parent 3547f87 commit 8d42052
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
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

0 comments on commit 8d42052

Please sign in to comment.