clj-docker-client icon indicating copy to clipboard operation
clj-docker-client copied to clipboard

PutContainerArchive hangs indefinitely with non existent containers

Open lispyclouds opened this issue 5 years ago • 0 comments

(docker/invoke containers {:op     :PutContainerArchive
                           :params {:id          "does-not-exist"
                                    :path        "/root"
                                    :inputStream (-> "test.tar.gz"
                                                     (clojure.java.io/file)
                                                     (clojure.java.io/input-stream))}})

This causes the call to hang up indefinitely even when the client timeouts are configured.

lispyclouds avatar Feb 23 '20 14:02 lispyclouds