@@ -80,7 +80,7 @@ export class PluginManager {
8080 private readonly props : Map < string , any > ;
8181 private _plugins : ConnectionPlugin [ ] = [ ] ;
8282 private readonly connectionProviderManager : ConnectionProviderManager ;
83- private fullServiceContainer : FullServicesContainer ;
83+ private fullServicesContainer : FullServicesContainer ;
8484 protected telemetryFactory : TelemetryFactory ;
8585
8686 constructor (
@@ -89,7 +89,7 @@ export class PluginManager {
8989 connectionProviderManager : ConnectionProviderManager ,
9090 telemetryFactory : TelemetryFactory
9191 ) {
92- this . fullServiceContainer = fullServicesContainer ;
92+ this . fullServicesContainer = fullServicesContainer ;
9393 this . connectionProviderManager = connectionProviderManager ;
9494 this . props = props ;
9595 this . telemetryFactory = telemetryFactory ;
@@ -102,7 +102,7 @@ export class PluginManager {
102102 this . _plugins = plugins ;
103103 } else {
104104 this . _plugins = await ConnectionPluginChainBuilder . getPlugins (
105- this . fullServiceContainer . getPluginService ( ) ,
105+ this . fullServicesContainer ,
106106 this . props ,
107107 this . connectionProviderManager ,
108108 configurationProfile
@@ -126,8 +126,8 @@ export class PluginManager {
126126 }
127127
128128 const telemetryContext = this . telemetryFactory . openTelemetryContext ( methodName , TelemetryTraceLevel . NESTED ) ;
129- const currentClient : ClientWrapper = this . fullServiceContainer . getPluginService ( ) . getCurrentClient ( ) . targetClient ;
130- this . fullServiceContainer . getPluginService ( ) . attachNoOpErrorListener ( currentClient ) ;
129+ const currentClient : ClientWrapper = this . fullServicesContainer . getPluginService ( ) . getCurrentClient ( ) . targetClient ;
130+ this . fullServicesContainer . getPluginService ( ) . attachNoOpErrorListener ( currentClient ) ;
131131 try {
132132 return await telemetryContext . start ( ( ) => {
133133 return this . executeWithSubscribedPlugins (
@@ -140,7 +140,7 @@ export class PluginManager {
140140 ) ;
141141 } ) ;
142142 } finally {
143- this . fullServiceContainer . getPluginService ( ) . attachErrorListener ( currentClient ) ;
143+ this . fullServicesContainer . getPluginService ( ) . attachErrorListener ( currentClient ) ;
144144 }
145145 }
146146
0 commit comments