Skip to content

Commit 11eb808

Browse files
committed
fix key match in python
1 parent 4d1d53d commit 11eb808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def log_to_event(log):
5050
"c_port": log["c-port"] if log["c-port"] != "-" else None,
5151
"time_to_first_byte": log["time-to-first-byte"] if log["time-to-first-byte"] != "-" else None,
5252
"x_edge_detailed_result_type": log["x-edge-detailed-result-type"] if log["x-edge-detailed-result-type"] != "-" else None,
53-
"content_type": log["sc_content-type"] if log["sc-content-type"] != "-" else None,
53+
"content_type": log["sc-content-type"] if log["sc-content-type"] != "-" else None,
5454
"content_len": log["sc-content-len"] if log["sc-content-len"] != "-" else None,
5555
"range_start": log["sc-range-start"] if log["sc-range-start"] != "-" else None,
5656
"range_end": log["sc-range-end"] if log["sc-range-end"] != "-" else None,

0 commit comments

Comments
 (0)