Merge pull request #2915 from Rickaym/fix--rounding-the-edges-of-observer-function-method-deprecation

fix: use correct  property names
This commit is contained in:
Mark Backman
2025-10-24 19:42:34 -04:00
committed by GitHub

View File

@@ -189,7 +189,7 @@ class TaskObserver(BaseObserver):
if isinstance(data, FramePushed):
if on_push_frame_deprecated:
await observer.on_push_frame(
data.src, data.dst, data.frame, data.direction, data.timestamp
data.source, data.destination, data.frame, data.direction, data.timestamp
)
else:
await observer.on_push_frame(data)