You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Podman changed their JSON API again causing Toolbox to panic when listing images (toolbox list -i or simply toolbox list). The affected field of the JSON is Created that used to hold a string with a human-readable representation of time (e.g., 5 minutes ago). That field was changed to an int (but the Go code sees it as a float) with UNIX time.
Before the discussion in the mentioned PR comes to some result, Toolbox should be overall more resilient when some change in the API happens.
Output of toolbox --version:
toolbox version 0.0.92
Output of podman version:
Version: 2.1.0-dev
API Version: 1
Go Version: go1.14.3
Built: Thu Jan 1 01:00:00 1970
OS/Arch: linux/amd64
The text was updated successfully, but these errors were encountered:
Podman changed their JSON API again causing Toolbox to panic when listing images (
toolbox list -i
or simplytoolbox list
). The affected field of the JSON isCreated
that used to hold astring
with a human-readable representation of time (e.g.,5 minutes ago
). That field was changed to anint
(but the Go code sees it as afloat
) with UNIX time.Before the discussion in the mentioned PR comes to some result, Toolbox should be overall more resilient when some change in the API happens.
Output of
toolbox --version
:Output of
podman version
:The text was updated successfully, but these errors were encountered: