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
{{ message }}
This repository has been archived by the owner on May 12, 2021. It is now read-only.
Apparently some characters are replaced with unicode in .aurora files which causes the container to fail. For example I tried to pass additional parameters to docker like so:
The docker container failed to launch with exit code 125. Inspecting the Aurora Struct Dump reveals that equals (=) in docker parameters were replaced by \u003.
I also tried to pass a python raw string to the Parameter object. Unfortunately that didn't work either. I finally worked around the issue by passing a volume parameter instead of mount.
The text was updated successfully, but these errors were encountered:
@rfuerst87 the \u003d displayed in the dump seems to be an artifact of the struct serializer. The equal signs in the parameters are correctly passed around to docker, that can be checked in the output of running docker inspect on the stopped containers.
Is there any other error reported by docker in the daemon logs?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Apparently some characters are replaced with unicode in
.aurora
files which causes the container to fail. For example I tried to pass additional parameters to docker like so:The docker container failed to launch with exit code 125. Inspecting the Aurora Struct Dump reveals that equals (=) in docker parameters were replaced by \u003.
I also tried to pass a python raw string to the
Parameter
object. Unfortunately that didn't work either. I finally worked around the issue by passing avolume
parameter instead ofmount
.The text was updated successfully, but these errors were encountered: