Skip to content

Commit

Permalink
fix: pipeline id keyerr in tools.py
Browse files Browse the repository at this point in the history
Signed-off-by: Avik Basu <[email protected]>
  • Loading branch information
ab93 committed Jan 23, 2024
1 parent add642c commit fbf171f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numalogic/udfs/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def make_stream_payload(
return StreamPayload(
uuid=data_payload["uuid"],
config_id=data_payload["config_id"],
pipeline_id=data_payload["pipeline_id"],
pipeline_id=data_payload.get("pipeline_id", "default"),
composite_keys=keys,
data=np.ascontiguousarray(raw_df, dtype=np.float32),
raw_data=np.ascontiguousarray(raw_df, dtype=np.float32),
Expand Down

0 comments on commit fbf171f

Please sign in to comment.