We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 383f389 commit 8134a44Copy full SHA for 8134a44
cycode/cli/commands/scan/code_scanner.py
@@ -119,7 +119,7 @@ def _enrich_scan_result_with_data_from_detection_rules(
119
cycode_client: 'ScanClient', scan_type: str, scan_result: ZippedFileScanResult
120
) -> None:
121
# TODO(MarshalX): remove scan_type arg after migration to new backend filter
122
- if scan_type != consts.SECRET_SCAN_TYPE:
+ if scan_type not in {consts.SECRET_SCAN_TYPE, consts.INFRA_CONFIGURATION_SCAN_TYPE}:
123
# not yet
124
return
125
0 commit comments