File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -149,14 +149,14 @@ export class IamAuthService extends GrpcService<IamTokenService> implements IAut
149149
150150export class MetadataAuthService implements IAuthService {
151151 private tokenService : ITokenService ;
152- public readonly sslCredentials : ISslCredentials ;
152+ public readonly sslCredentials ? : ISslCredentials ;
153153
154154 static MAX_TRIES = 5 ;
155155 static TRIES_INTERVAL = 2000 ;
156156
157157 constructor ( private dbName : string , sslCredentials ?: ISslCredentials , tokenService ?: ITokenService ) {
158158 this . tokenService = tokenService || new TokenService ( ) ;
159- this . sslCredentials = sslCredentials || makeSslCredentials ( ) ;
159+ this . sslCredentials = sslCredentials ;
160160 }
161161
162162 public async getAuthMetadata ( ) : Promise < grpc . Metadata > {
You can’t perform that action at this time.
0 commit comments