Skip to content

Commit

Permalink
Do not require AWS keys for CROSSED_TRACING_LIBRARIES (#3322)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeauchesne authored Oct 25, 2024
1 parent 6abc8d1 commit 5e90616
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion utils/_context/_scenarios/integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _check_aws_variables(self):
)


class CrossedTracingLibraryScenario(AWSIntegrationsScenario):
class CrossedTracingLibraryScenario(EndToEndScenario):
def __init__(self) -> None:
super().__init__(
"CROSSED_TRACING_LIBRARIES",
Expand All @@ -132,3 +132,8 @@ def __init__(self) -> None:
include_rabbitmq=True,
doc="Spawns a buddy for each supported language of APM, requires AWS authentication.",
)
self.unique_id = None

def configure(self, config):
super().configure(config)
self.unique_id = _get_unique_id(self.replay, self.host_log_folder)

0 comments on commit 5e90616

Please sign in to comment.