@cryptotaxi247 / CoPilot / commits / 22bac930

fix: update event stream config to use customer code instead of name

taylorwalton committed Jan 6, 2026 at 13:43 UTC 22bac930db4d3ab4409d2ec755a30c430197faa2
1 file changed +1 -1
backend/app/customer_provisioning/services/graylog.py
+1 -1
@@ -126,7 +126,7 @@ def build_event_stream_config(
126 Returns:
127 WazuhEventStream: The configured Wazuh event stream.
128 """
129 - sanitized_name = request.customer_name.replace(" ", "_")
129 + sanitized_name = request.customer_code.replace(" ", "_")
130 return WazuhEventStream(
131 title=f"{request.customer_name} - Wazuh EDR EVENTS",
132 description=f"{request.customer_name} - Wazuh EDR EVENTS",