File tree 7 files changed +16
-6
lines changed
7 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,16 @@ release.
19
19
([ #1338 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1338 ) )
20
20
* [ loadgenerator, frontend] enable browser traffic in loadgenerator using playwright
21
21
([ #1345 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1345 ) )
22
+ * [ accountingservice] update wiki link
23
+ ([ #1346 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1346 ) )
24
+ * [ checkoutservice] update wiki link
25
+ ([ #1346 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1346 ) )
26
+ * [ productcatalogservice] update wiki link
27
+ ([ #1346 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1346 ) )
28
+ * [ adservice] added group and anonymous read permission to opentelemetry-javaagent.jar
29
+ ([ #1348 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1348 ) )
30
+ * [ frauddetectionservice] added group and anonymous read permission to opentelemetry-javaagent.jar
31
+ ([ #1348 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1348 ) )
22
32
23
33
## 1.7.2
24
34
Original file line number Diff line number Diff line change 6
6
package tools
7
7
8
8
// This file follows the recommendation at
9
- // https://github.com/golang/go /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
9
+ // https://go.dev /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
10
10
// on how to pin tooling dependencies to a go.mod file.
11
11
// This ensures that all systems use the same version of tools in addition to regular dependencies.
12
12
Original file line number Diff line number Diff line change 7
7
package tools
8
8
9
9
// This file follows the recommendation at
10
- // https://github.com/golang/go /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
10
+ // https://go.dev /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
11
11
// on how to pin tooling dependencies to a go.mod file.
12
12
// This ensures that all systems use the same version of tools in addition to regular dependencies.
13
13
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ARG version=1.31.0
24
24
WORKDIR /usr/src/app/
25
25
26
26
COPY --from=builder /usr/src/app/ ./
27
- ADD https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v$version/opentelemetry-javaagent.jar /usr/src/app/opentelemetry-javaagent.jar
27
+ ADD --chmod=644 https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v$version/opentelemetry-javaagent.jar /usr/src/app/opentelemetry-javaagent.jar
28
28
ENV JAVA_TOOL_OPTIONS=-javaagent:/usr/src/app/opentelemetry-javaagent.jar
29
29
30
30
EXPOSE ${AD_SERVICE_PORT}
Original file line number Diff line number Diff line change 7
7
package tools
8
8
9
9
// This file follows the recommendation at
10
- // https://github.com/golang/go /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
10
+ // https://go.dev /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
11
11
// on how to pin tooling dependencies to a go.mod file.
12
12
// This ensures that all systems use the same version of tools in addition to regular dependencies.
13
13
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ ARG version=1.31.0
18
18
WORKDIR /usr/src/app/
19
19
20
20
COPY --from=builder /usr/src/app/build/libs/frauddetectionservice-1.0-all.jar ./
21
- ADD https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v$version/opentelemetry-javaagent.jar /app/opentelemetry-javaagent.jar
21
+ ADD --chmod=644 https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v$version/opentelemetry-javaagent.jar /app/opentelemetry-javaagent.jar
22
22
ENV JAVA_TOOL_OPTIONS=-javaagent:/app/opentelemetry-javaagent.jar
23
23
24
24
ENTRYPOINT [ "java" , "-jar" , "frauddetectionservice-1.0-all.jar" ]
Original file line number Diff line number Diff line change 7
7
package tools
8
8
9
9
// This file follows the recommendation at
10
- // https://github.com/golang/go /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
10
+ // https://go.dev /wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
11
11
// on how to pin tooling dependencies to a go.mod file.
12
12
// This ensures that all systems use the same version of tools in addition to regular dependencies.
13
13
You can’t perform that action at this time.
0 commit comments