Skip to content

Commit

Permalink
Revert #2805
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeauchesne committed Aug 5, 2024
1 parent ec39dea commit 7891b84
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions utils/_context/_scenarios/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ def all_endtoend_scenarios(test_object):
"REMOTE_CONFIG_MOCKED_BACKEND_ASM_FEATURES",
rc_api_enabled=True,
appsec_enabled=False,
weblog_env={"DD_REMOTE_CONFIGURATION_ENABLED": "true", "DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",},
weblog_env={"DD_REMOTE_CONFIGURATION_ENABLED": "true",},
library_interface_timeout=20,
doc="",
scenario_groups=[ScenarioGroup.APPSEC],
Expand All @@ -591,7 +591,6 @@ def all_endtoend_scenarios(test_object):
"DD_DYNAMIC_INSTRUMENTATION_ENABLED": "1",
"DD_DEBUGGER_ENABLED": "1",
"DD_REMOTE_CONFIG_ENABLED": "true",
"DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",
"DD_INTERNAL_RCM_POLL_INTERVAL": "1000",
},
library_interface_timeout=20,
Expand All @@ -601,7 +600,7 @@ def all_endtoend_scenarios(test_object):
remote_config_mocked_backend_asm_dd = EndToEndScenario(
"REMOTE_CONFIG_MOCKED_BACKEND_ASM_DD",
rc_api_enabled=True,
weblog_env={"DD_APPSEC_RULES": None, "DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",},
weblog_env={"DD_APPSEC_RULES": None,},
library_interface_timeout=20,
doc="""
The spec says that if DD_APPSEC_RULES is defined, then rules won't be loaded from remote config.
Expand All @@ -617,11 +616,7 @@ def all_endtoend_scenarios(test_object):
remote_config_mocked_backend_asm_features_nocache = EndToEndScenario(
"REMOTE_CONFIG_MOCKED_BACKEND_ASM_FEATURES_NOCACHE",
rc_api_enabled=True,
weblog_env={
"DD_APPSEC_ENABLED": "false",
"DD_REMOTE_CONFIGURATION_ENABLED": "true",
"DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",
},
weblog_env={"DD_APPSEC_ENABLED": "false", "DD_REMOTE_CONFIGURATION_ENABLED": "true",},
library_interface_timeout=20,
doc="",
scenario_groups=[ScenarioGroup.APPSEC],
Expand All @@ -634,7 +629,6 @@ def all_endtoend_scenarios(test_object):
"DD_DYNAMIC_INSTRUMENTATION_ENABLED": "1",
"DD_DEBUGGER_ENABLED": "1",
"DD_REMOTE_CONFIG_ENABLED": "true",
"DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",
},
library_interface_timeout=20,
doc="",
Expand All @@ -643,7 +637,6 @@ def all_endtoend_scenarios(test_object):
remote_config_mocked_backend_asm_dd_nocache = EndToEndScenario(
"REMOTE_CONFIG_MOCKED_BACKEND_ASM_DD_NOCACHE",
rc_api_enabled=True,
weblog_env={"DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",},
library_interface_timeout=20,
doc="",
scenario_groups=[ScenarioGroup.APPSEC],
Expand Down Expand Up @@ -690,7 +683,6 @@ def all_endtoend_scenarios(test_object):
"DD_REMOTE_CONFIG_ENABLED": "true",
"DD_INTERNAL_RCM_POLL_INTERVAL": "2000",
"DD_DEBUGGER_DIAGNOSTICS_INTERVAL": "1",
"DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": "1",
},
library_interface_timeout=20,
doc="Test scenario for checking if method probe statuses can be successfully 'RECEIVED' and 'INSTALLED'",
Expand Down

0 comments on commit 7891b84

Please sign in to comment.