File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
actions/detection_testing/infrastructures Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1572,7 +1572,6 @@ def hec_raw_replay(
1572
1572
def status (self ):
1573
1573
pass
1574
1574
1575
- # TODO (cmcginley): the finish function doesn't actually stop execution
1576
1575
def finish (self ):
1577
1576
self .pbar .bar_format = (
1578
1577
f"Finished running tests on instance: [{ self .get_name ()} ]"
Original file line number Diff line number Diff line change 22
22
LOG_LEVEL = logging .DEBUG
23
23
LOG_PATH = "content_versioning_service.log"
24
24
25
- # TODO (cmcginley): would it be better for this to only run on one instance? Or to consolidate
26
- # error reporting at least?
27
-
28
25
29
26
class ContentVersioningService (BaseModel ):
30
27
"""
@@ -355,7 +352,8 @@ def validate_content_against_cms(self) -> None:
355
352
count = 100
356
353
offset = 0
357
354
remaining_detections = {
358
- x .get_action_dot_correlationsearch_dot_label (self .global_config .app ): x for x in self .detections
355
+ x .get_action_dot_correlationsearch_dot_label (self .global_config .app ): x
356
+ for x in self .detections
359
357
}
360
358
matched_detections : dict [str , Detection ] = {}
361
359
You can’t perform that action at this time.
0 commit comments