diff options
author | Wolfy-J <[email protected]> | 2018-06-05 22:48:27 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-05 22:48:27 +0300 |
commit | 6adaf713b47c9a3ab3a516e21d2d4ecf7f2075d6 (patch) | |
tree | 6bcf1bfea1e2f87a3ae7065612c0df43c90c1cdc /server_config.go | |
parent | 3112f9b58c73773cea972fd79f04d33f8f7d7edd (diff) |
breaking the tests
Diffstat (limited to 'server_config.go')
-rw-r--r-- | server_config.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server_config.go b/server_config.go index 2816a70b..7e0dcbe9 100644 --- a/server_config.go +++ b/server_config.go @@ -1,14 +1,14 @@ package roadrunner import ( - "time" - "strings" - "net" "errors" + "net" + "strings" + "time" ) const ( - FactoryPipes = iota + FactoryPipes = iota FactorySocket ) @@ -18,8 +18,8 @@ type ServerConfig struct { // This config section must not change on re-configuration. Relay string - // FactoryTimeout defines for how long socket factory will be waiting for worker connection. For socket factory only. - // This config section must not change on re-configuration. + // FactoryTimeout defines for how long socket factory will be waiting for worker connection. This config section + // must not change on re-configuration. FactoryTimeout time.Duration // Pool defines worker pool configuration, number of workers, timeouts and etc. This config section might change |