File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/test/java/io/opentelemetry/agents Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ Currently, we test:
7979- no agent versus latest released agent
8080- no agent versus latest snapshot
8181- latest release vs. latest snapshot
82+ - latest snapshot with indy enabled
8283
8384Additional configurations can be created by submitting a PR against the ` Configs ` class.
8485
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public Optional<Path> resolve(Agent agent) throws Exception {
2424 if (Agent .NONE .equals (agent )) {
2525 return Optional .empty ();
2626 }
27- if (Agent .LATEST_SNAPSHOT .equals (agent )) {
27+ if (Agent .LATEST_SNAPSHOT .equals (agent ) || Agent . LATEST_SNAPSHOT_INDY . equals ( agent ) ) {
2828 return snapshotResolver .resolve ();
2929 }
3030 if (agent .hasUrl ()) {
You can’t perform that action at this time.
0 commit comments