File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ interface ConnectionCallbacks {
67
67
}
68
68
69
69
interface ConnectionConfigFiles {
70
- connection : ConfigFile < RemoteConfigFile > ;
70
+ settings : ConfigFile < RemoteConfigFile > ;
71
71
}
72
72
73
73
export default class IBMi {
@@ -88,7 +88,7 @@ export default class IBMi {
88
88
private componentManager = new ComponentManager ( this ) ;
89
89
90
90
private configFiles : ConnectionConfigFiles = {
91
- connection : new ConfigFile < RemoteConfigFile > ( this , `codefori ` , { } )
91
+ settings : new ConfigFile < RemoteConfigFile > ( this , `settings ` , { } )
92
92
} ;
93
93
94
94
/**
@@ -506,7 +506,7 @@ export default class IBMi {
506
506
callbacks . progress ( { message : `Loading remote configuration files.` } ) ;
507
507
await this . loadRemoteConfigs ( ) ;
508
508
509
- const remoteConnectionConfig = this . getConfigFile < RemoteConfigFile > ( `connection ` ) ;
509
+ const remoteConnectionConfig = this . getConfigFile < RemoteConfigFile > ( `settings ` ) ;
510
510
if ( remoteConnectionConfig . getState ( ) . server === `ok` ) {
511
511
const remoteConfig = await remoteConnectionConfig . get ( ) ;
512
512
You can’t perform that action at this time.
0 commit comments