@@ -59,6 +59,7 @@ import io.vertx.serviceproxy.ServiceProxyBuilder
5959import kotlinx.coroutines.*
6060import liveplugin.implementation.LivePluginProjectLoader
6161import org.apache.commons.text.CaseUtils
62+ import spp.jetbrains.PluginBundle.message
6263import spp.jetbrains.UserData
6364import spp.jetbrains.marker.SourceMarker
6465import spp.jetbrains.marker.jvm.ArtifactSearch
@@ -69,7 +70,6 @@ import spp.jetbrains.marker.source.mark.api.filter.CreateSourceMarkFilter
6970import spp.jetbrains.monitor.skywalking.SkywalkingMonitor
7071import spp.jetbrains.plugin.LivePluginService
7172import spp.jetbrains.plugin.LiveStatusManager
72- import spp.jetbrains.PluginBundle.message
7373import spp.jetbrains.sourcemarker.activities.PluginSourceMarkerStartupActivity.Companion.INTELLIJ_PRODUCT_CODES
7474import spp.jetbrains.sourcemarker.command.ControlBarController
7575import spp.jetbrains.sourcemarker.mark.PluginSourceMarkEventListener
@@ -203,7 +203,8 @@ class SourceMarkerPlugin(val project: Project) {
203203 message(" plugin_name" ), " Connection established" ,
204204 " You have successfully connected. $pluginName is now fully activated." ,
205205 NotificationType .INFORMATION
206- )
206+ ),
207+ project
207208 )
208209 config.notifiedConnection = true
209210
@@ -519,7 +520,8 @@ class SourceMarkerPlugin(val project: Project) {
519520 message(" plugin_name" ), " Connection auto-established" ,
520521 " You have successfully auto-connected to Live Platform. ${message(" plugin_name" )} is now fully activated." ,
521522 NotificationType .INFORMATION
522- )
523+ ),
524+ project
523525 )
524526 } else if (resp.statusCode() == 405 ) {
525527 // found skywalking OAP server
@@ -538,7 +540,8 @@ class SourceMarkerPlugin(val project: Project) {
538540 message(" plugin_name" ), " Connection auto-established" ,
539541 " You have successfully auto-connected to Apache SkyWalking. ${message(" plugin_name" )} is now fully activated." ,
540542 NotificationType .INFORMATION
541- )
543+ ),
544+ project
542545 )
543546 }
544547 }
0 commit comments