Update binderDied() error description to spell out the possibilities … · grpc/grpc-java@46c1b38

File tree

1 file changed

lines changed

  • binder/src/main/java/io/grpc/binder/internal

1 file changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -299,7 +299,7 @@ protected boolean setOutgoingBinder(OneWayBinderProxy binder) {

299299
300300

@Override

301301

public synchronized void binderDied() {

302-

shutdownInternal(Status.UNAVAILABLE.withDescription("binderDied"), true);

302+

shutdownInternal(Status.UNAVAILABLE.withDescription("Peer process crashed, exited or was killed (binderDied)"), true);

303303

}

304304
305305

@GuardedBy("this")