File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ export class KubeConfig {
130
130
this . makePathsAbsolute ( rootDirectory ) ;
131
131
}
132
132
133
- public async applytoHTTPSOptions ( opts : https . RequestOptions | WebSocket . ClientOptions ) : Promise < void > {
133
+ public async applyToHTTPSOptions ( opts : https . RequestOptions | WebSocket . ClientOptions ) : Promise < void > {
134
134
await this . applyOptions ( opts ) ;
135
135
136
136
const user = this . getCurrentUser ( ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export class ProtoClient {
14
14
hostname : u . hostname ,
15
15
protocol : u . protocol ,
16
16
} ;
17
- await this . config . applytoHTTPSOptions ( options ) ;
17
+ await this . config . applyToHTTPSOptions ( options ) ;
18
18
const req = http . request ( options ) ;
19
19
20
20
const result = await new Promise < any > ( ( resolve , reject ) => {
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ export class WebSocketHandler implements WebSocketInterface {
166
166
167
167
const opts : WebSocket . ClientOptions = { } ;
168
168
169
- await this . config . applytoHTTPSOptions ( opts ) ;
169
+ await this . config . applyToHTTPSOptions ( opts ) ;
170
170
171
171
return await new Promise < WebSocket > ( ( resolve , reject ) => {
172
172
const client = this . socketFactory
You can’t perform that action at this time.
0 commit comments