Skip to content

Commit

Permalink
2.4.0-beta.1 release
Browse files Browse the repository at this point in the history
Updated installer to the renamed jar with the appropriate version.
  • Loading branch information
chanchiem committed Dec 2, 2019
1 parent 79d7def commit b0502a7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion aws-xray-auto-instrumentation-agent-bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-auto-instrumentation-agent-pom</artifactId>
<version>2.4.0-beta</version>
<version>2.4.0-beta.1</version>
</parent>
<artifactId>aws-xray-auto-instrumentation-agent-bootstrap</artifactId>
<name>AWS X-Ray Auto Instrumentation Agent for Java - Bootstrap</name>
Expand Down
2 changes: 1 addition & 1 deletion aws-xray-auto-instrumentation-agent-installer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-auto-instrumentation-agent-pom</artifactId>
<version>2.4.0-beta</version>
<version>2.4.0-beta.1</version>
</parent>
<artifactId>aws-xray-auto-instrumentation-agent-installer</artifactId>
<name>AWS X-Ray Auto Instrumentation Agent for Java - Installer</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public static void installInLambda(String agentArgs) {
// TODO Dynamic Versioning based on maven properties.
// Should we parse agentArgs directly or assume it's the service name or config?
System.setProperty("software.amazon.disco.agent.jar.bytebuddy.agent.toolsjar", "/opt/java/lib/tools.jar");
final String bootstrapJarPath = "/opt/java/lib/aws-xray-auto-instrumentation-agent-bootstrap-2.4.0.jar";
final String runtimeJarPath = "/opt/java/lib/aws-xray-auto-instrumentation-agent-runtime-2.4.0.jar";
final String bootstrapJarPath = "/opt/java/lib/aws-xray-auto-instrumentation-agent-bootstrap-2.4.0-beta.1.jar";
final String runtimeJarPath = "/opt/java/lib/aws-xray-auto-instrumentation-agent-runtime-2.4.0-beta.1.jar";

install(bootstrapJarPath, runtimeJarPath, agentArgs);
}
Expand Down
2 changes: 1 addition & 1 deletion aws-xray-auto-instrumentation-agent-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-auto-instrumentation-agent-pom</artifactId>
<version>2.4.0-beta</version>
<version>2.4.0-beta.1</version>
</parent>
<artifactId>aws-xray-auto-instrumentation-agent-runtime</artifactId>
<name>AWS X-Ray Auto Instrumentation Agent for Java - Runtime</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</parent>
<artifactId>aws-xray-auto-instrumentation-agent-pom</artifactId>
<name>AWS X-Ray Auto Instrumentation Agent for Java</name>
<version>2.4.0-beta</version>
<version>2.4.0-beta.1</version>
<modules>
<module>aws-xray-auto-instrumentation-agent-bootstrap</module>
<module>aws-xray-auto-instrumentation-agent-runtime</module>
Expand Down

0 comments on commit b0502a7

Please sign in to comment.