Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson committed Aug 12, 2022
1 parent 0810501 commit 2a728e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class TCPServiceDiscoveryBackend : ServiceDiscoveryBackend {
}
vertx.createNetClient(options)
}
socket = client.connect(SourceMarkerConfig.DEFAULT_TCP_SERVICE_PORT, serviceHost).await()
socket = client.connect(SourceMarkerConfig.DEFAULT_SERVICE_PORT, serviceHost).await()
} catch (ex: Exception) {
log.error("Failed to connect to service discovery server", ex)
setupPromise.fail(ex)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ data class SourceMarkerConfig(
) {
companion object {
const val DEFAULT_SERVICE_PORT = 12800
const val DEFAULT_TCP_SERVICE_PORT = 5455
}
}

Expand Down

0 comments on commit 2a728e7

Please sign in to comment.