@@ -59,6 +59,7 @@ import io.vertx.serviceproxy.ServiceProxyBuilder
59
59
import kotlinx.coroutines.*
60
60
import liveplugin.implementation.LivePluginProjectLoader
61
61
import org.apache.commons.text.CaseUtils
62
+ import spp.jetbrains.PluginBundle.message
62
63
import spp.jetbrains.UserData
63
64
import spp.jetbrains.marker.SourceMarker
64
65
import spp.jetbrains.marker.jvm.ArtifactSearch
@@ -69,7 +70,6 @@ import spp.jetbrains.marker.source.mark.api.filter.CreateSourceMarkFilter
69
70
import spp.jetbrains.monitor.skywalking.SkywalkingMonitor
70
71
import spp.jetbrains.plugin.LivePluginService
71
72
import spp.jetbrains.plugin.LiveStatusManager
72
- import spp.jetbrains.PluginBundle.message
73
73
import spp.jetbrains.sourcemarker.activities.PluginSourceMarkerStartupActivity.Companion.INTELLIJ_PRODUCT_CODES
74
74
import spp.jetbrains.sourcemarker.command.ControlBarController
75
75
import spp.jetbrains.sourcemarker.mark.PluginSourceMarkEventListener
@@ -203,7 +203,8 @@ class SourceMarkerPlugin(val project: Project) {
203
203
message(" plugin_name" ), " Connection established" ,
204
204
" You have successfully connected. $pluginName is now fully activated." ,
205
205
NotificationType .INFORMATION
206
- )
206
+ ),
207
+ project
207
208
)
208
209
config.notifiedConnection = true
209
210
@@ -519,7 +520,8 @@ class SourceMarkerPlugin(val project: Project) {
519
520
message(" plugin_name" ), " Connection auto-established" ,
520
521
" You have successfully auto-connected to Live Platform. ${message(" plugin_name" )} is now fully activated." ,
521
522
NotificationType .INFORMATION
522
- )
523
+ ),
524
+ project
523
525
)
524
526
} else if (resp.statusCode() == 405 ) {
525
527
// found skywalking OAP server
@@ -538,7 +540,8 @@ class SourceMarkerPlugin(val project: Project) {
538
540
message(" plugin_name" ), " Connection auto-established" ,
539
541
" You have successfully auto-connected to Apache SkyWalking. ${message(" plugin_name" )} is now fully activated." ,
540
542
NotificationType .INFORMATION
541
- )
543
+ ),
544
+ project
542
545
)
543
546
}
544
547
}
0 commit comments