-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
type/taskBody of work related to an epicBody of work related to an epic
Description
Component
Python SDK
Task Description
The playback is using json.dumps(payload) which produces JSON with spaces after colons (e.g., {"key": "value"}), but httpx serializes JSON without spaces (e.g., {"key":"value"}).
This can lead to difficulty while testing the JSONPlayback when trying to compare hashes. We should either use ujson which produce a whitespace free JSON or instruct json.dumps to use (',', ':') as separator.
Metadata
Metadata
Assignees
Labels
type/taskBody of work related to an epicBody of work related to an epic