Skip to content

Commit

Permalink
fix #228
Browse files Browse the repository at this point in the history
  • Loading branch information
troyraen committed Jun 13, 2024
1 parent eca877a commit 542cd75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion broker/cloud_functions/lite/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def semantic_compression(alert_dict, schema_map) -> dict:
"filter": source[schema_map["filter"]],
}

access_prev = alert_dict[schema_map["prvSources"]]
access_prev = alert_dict.get(schema_map["prvSources"], {})

prev_sources = []

Expand Down

0 comments on commit 542cd75

Please sign in to comment.