File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
control/src/main/kotlin/spp/probe/control
services/src/main/kotlin/spp/probe/services/instrument Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ import spp.protocol.ProtocolMarshaller
3030import spp.protocol.instrument.*
3131import spp.protocol.instrument.command.CommandType
3232import spp.protocol.instrument.command.LiveInstrumentCommand
33- import spp.protocol.platform.PlatformAddress
3433import spp.protocol.platform.ProbeAddress
34+ import spp.protocol.platform.ProcessorAddress
3535import java.lang.instrument.Instrumentation
3636import java.lang.reflect.InvocationTargetException
3737import java.lang.reflect.Method
@@ -128,7 +128,7 @@ class LiveInstrumentRemote : AbstractVerticle() {
128128 map[" cause" ] = ThrowableTransformer .INSTANCE .convert2String(ex, 4000 )
129129
130130 FrameHelper .sendFrame(
131- BridgeEventType .PUBLISH .name.lowercase(), PlatformAddress .LIVE_INSTRUMENT_REMOVED ,
131+ BridgeEventType .PUBLISH .name.lowercase(), ProcessorAddress .LIVE_INSTRUMENT_REMOVED ,
132132 JsonObject .mapFrom(map), SourceProbe .tcpSocket
133133 )
134134 }
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import spp.probe.services.common.model.ActiveLiveInstrument
3030import spp.probe.services.common.transform.LiveTransformer
3131import spp.probe.services.error.LiveInstrumentException
3232import spp.protocol.instrument.LiveInstrument
33- import spp.protocol.platform.PlatformAddress
33+ import spp.protocol.platform.ProcessorAddress
3434import java.lang.instrument.Instrumentation
3535import java.lang.instrument.UnmodifiableClassException
3636import java.util.*
@@ -117,7 +117,7 @@ object LiveInstrumentService {
117117 instrument.isLive = true
118118 if (! instrument.isRemoval) {
119119 instrumentEventConsumer!! .accept(
120- PlatformAddress .LIVE_INSTRUMENT_APPLIED ,
120+ ProcessorAddress .LIVE_INSTRUMENT_APPLIED ,
121121 ModelSerializer .INSTANCE .toJson(instrument.instrument)
122122 )
123123 }
@@ -227,7 +227,7 @@ object LiveInstrumentService {
227227 }
228228
229229 instrumentEventConsumer!! .accept(
230- PlatformAddress .LIVE_INSTRUMENT_REMOVED ,
230+ ProcessorAddress .LIVE_INSTRUMENT_REMOVED ,
231231 ModelSerializer .INSTANCE .toJson(map)
232232 )
233233 }
You can’t perform that action at this time.
0 commit comments