Skip to content

Commit

Permalink
Merge pull request #229 from mwvgroup/u/raen/bugfix/no_prv_srcs
Browse files Browse the repository at this point in the history
fix #228
  • Loading branch information
hernandezc1 authored Jun 13, 2024
2 parents eca877a + 542cd75 commit 03c6fed
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 03c6fed

Please sign in to comment.