grpc-js: Rearrange connectivity state enum to match the native library

This commit is contained in:
Michael Lumish 2020-11-09 10:45:57 -08:00
parent 57428bf6fa
commit cd2713f42a
1 changed files with 1 additions and 1 deletions

View File

@ -41,10 +41,10 @@ import { mapProxyName } from './http_proxy';
import { GrpcUri, parseUri, uriToString } from './uri-parser';
export enum ConnectivityState {
IDLE,
CONNECTING,
READY,
TRANSIENT_FAILURE,
IDLE,
SHUTDOWN,
}