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 fe438ea commit ca9af1aCopy full SHA for ca9af1a
electron/src/main/scala/util/DockerModem.scala
@@ -50,7 +50,7 @@ object DockerModem {
50
log.debug(s"Building Docker modem for Url: $connection")
51
val modemOptions = {
52
if (connection.url.toLowerCase().startsWith("unix://")) {
53
- new ModemOptions(socketPath = connection.url.drop("unix://".size), host = "localhost", timeout=2000, protocol = "http", port = null)
+ new ModemOptions(socketPath = connection.url.drop("unix://".size), host = "localhost", timeout = DockerClientConfig.HttpTimeOut, protocol = "http", port = null)
54
} else {
55
val protocol = connection.url.takeWhile(_ != ':')
56
val host = connection.url.drop(protocol.size).drop("://".size).takeWhile(_ != ':')
0 commit comments