Correct typo in gRPC client creation error message

Previously, when gRPC client creation failed, the incorrect error message was shown:

root ERROR Could create client for gRPC.

When the message is intended to have the opposite meaning.
This commit is contained in:
per1234 2021-03-05 15:18:26 -08:00
parent d648159f43
commit e94702349b

View File

@ -59,7 +59,7 @@ export abstract class GrpcClientProvider<C> {
const client = await this.createClient(this._port);
this._client = client;
} catch (error) {
this.logger.error('Could create client for gRPC.', error)
this.logger.error('Could not create client for gRPC.', error)
}
}
}