Permalink
Browse files

Changed "webservice.timeout" to "webservice.binding-timeout".

Also no longer auto-merging the changelog, as we couldn't quite get auto-merging to work with our flow, requiring further manual intervention anyway.
  • Loading branch information...
1 parent d2240af commit aa5dce65bbd4d12701b91e5e52ea9b0952662b9b @kshakir kshakir committed Jan 14, 2017
View
@@ -1,6 +1,3 @@
-# This file can always be added to, line additions should never collide.
-CHANGELOG.MD merge=union
-
# These files are text and should be normalized (Convert crlf => lf)
*.scala text
*.MD text
View
@@ -7,9 +7,8 @@
* Added ability to override the default zone(s) used by JES via the config structure by setting `genomics.default-zones` in the JES configuration
* Added support for new WDL functions:
* `length: (Array[X]) => Integer` - report the length of the specified array
-* The cromwell server TCP binding timeout is now configurable via the config key `webservice.timeout`, defaulted to the
- previous value `5s` (five seconds) via the reference.conf.
- * `length: (Array[X]) => Integer` - report the length of the specified array.
+* The cromwell server TCP binding timeout is now configurable via the config key `webservice.binding-timeout`, defaulted
+ to the previous value `5s` (five seconds) via the reference.conf.
### Database schema changes
* Added CUSTOM_LABELS as a field of WORKFLOW_STORE_ENTRY, to store workflow store entries.
@@ -8,7 +8,7 @@
webservice {
port = 8000
interface = 0.0.0.0
- timeout = 5s
+ binding-timeout = 5s
instance.name = "reference"
}
@@ -31,7 +31,7 @@ object CromwellServer {
val interface = webserviceConf.getString("interface")
val port = webserviceConf.getInt("port")
- val timeout = webserviceConf.as[FiniteDuration]("timeout")
+ val timeout = webserviceConf.as[FiniteDuration]("binding-timeout")
val futureBind = service.bind(interface, port)(implicitly, timeout, actorSystem, implicitly)
futureBind andThen {
case Success(_) =>

0 comments on commit aa5dce6

Please sign in to comment.