Skip to content

Commit 2a728e7

Browse files
committed
1 parent 0810501 commit 2a728e7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

plugin/src/main/kotlin/spp/jetbrains/sourcemarker/service/discover/TCPServiceDiscoveryBackend.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class TCPServiceDiscoveryBackend : ServiceDiscoveryBackend {
114114
}
115115
vertx.createNetClient(options)
116116
}
117-
socket = client.connect(SourceMarkerConfig.DEFAULT_TCP_SERVICE_PORT, serviceHost).await()
117+
socket = client.connect(SourceMarkerConfig.DEFAULT_SERVICE_PORT, serviceHost).await()
118118
} catch (ex: Exception) {
119119
log.error("Failed to connect to service discovery server", ex)
120120
setupPromise.fail(ex)

plugin/src/main/kotlin/spp/jetbrains/sourcemarker/settings/SourceMarkerConfig.kt

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ data class SourceMarkerConfig(
3838
) {
3939
companion object {
4040
const val DEFAULT_SERVICE_PORT = 12800
41-
const val DEFAULT_TCP_SERVICE_PORT = 5455
4241
}
4342
}
4443

0 commit comments

Comments
 (0)