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
uri = "unix:///Users/muzammil.shahbaz/.local/share/containers/podman/machine/podman-machine-default/podman.sock"
This exceeds the standard 64 characters.
On execution, I get the following error:
Exception has occurred: UnicodeError
encoding with 'idna' codec failed (UnicodeError: label empty or too long)
The above exception was the direct cause of the following exception:
File "../podmanclient.py", line 12, in <module>
version = client.version()
A potential fix would be to encode the URL to base64 and handle decoding in the code.
I am using podman version 4.1.1 on OSX using qemu virtual machine.
The text was updated successfully, but these errors were encountered:
I couldn't quite figure out how to get the path to the file descriptor the way that they do with Go, but I found a different (albeit clunky) workaround here. It creates an SSH tunnel to a socket in a much easier to access (and shorter path) location: /tmp/podman.sock. Its neither ideal nor pretty, but it gets the job done.
I have a uri like this
uri = "unix:///Users/muzammil.shahbaz/.local/share/containers/podman/machine/podman-machine-default/podman.sock"
This exceeds the standard 64 characters.
On execution, I get the following error:
A potential fix would be to encode the URL to base64 and handle decoding in the code.
I am using podman version 4.1.1 on OSX using qemu virtual machine.
The text was updated successfully, but these errors were encountered: