From b05438b5f11d4c1d2340ab660759a0f90241b990 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 27 Jul 2022 13:18:59 -0400 Subject: [PATCH] Agent: Add issue reference to _add_http_ports_to_fingerprinters() --- monkey/infection_monkey/master/propagator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/infection_monkey/master/propagator.py b/monkey/infection_monkey/master/propagator.py index ccfbf11a7..870e99ad9 100644 --- a/monkey/infection_monkey/master/propagator.py +++ b/monkey/infection_monkey/master/propagator.py @@ -83,7 +83,7 @@ class Propagator: network_scan: NetworkScanConfiguration, http_ports: Sequence[int] ) -> NetworkScanConfiguration: # This is a hack to add http_ports to the options of fingerprinters - # It will be reworked + # It will be reworked. See https://github.com/guardicore/monkey/issues/2136 modified_fingerprinters = [*network_scan.fingerprinters] for i, fingerprinter in enumerate(modified_fingerprinters): if fingerprinter.name != "http":