We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1add445 commit 1050a13Copy full SHA for 1050a13
βCHANGELOG.mdβ
@@ -1,5 +1,9 @@
1
# Change Log
2
3
+## Unreleased
4
+
5
+- Ensures `GridMetrics` are sent via `msgpack` the same as `Metrics`.
6
7
## [v2.2.2](https://github.com/simvue-io/client/releases/tag/v2.2.2) - 2025-10-14
8
9
- Enforced use of UTC for all datetime recording.
βsimvue/api/objects/grids.pyβ
@@ -258,6 +258,9 @@ def __init__(
258
self._run_id = self._staging.get("run")
259
self._is_set = True
260
261
+ def _post_single(self, **kwargs) -> dict[str, typing.Any]:
262
+ return super()._post_single(is_json=False, **kwargs)
263
264
@staticmethod
265
def run_grids_endpoint(run: str | None = None) -> URL:
266
"""Returns the URL for grids for a specific run."""
0 commit comments