We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0867714 commit eef8e14Copy full SHA for eef8e14
hbase-server/src/main/java/org/apache/hadoop/hbase/ipc/CallRunner.java
@@ -110,7 +110,7 @@ public void run() {
110
if (RpcServer.LOG.isTraceEnabled()) {
111
Optional<User> remoteUser = call.getRequestUser();
112
RpcServer.LOG.trace(call.toShortString() + " executing as " +
113
- (remoteUser.isPresent() ? "NULL principal" : remoteUser.get().getName()));
+ (remoteUser.isPresent() ? remoteUser.get().getName() : "NULL principal"));
114
}
115
Throwable errorThrowable = null;
116
String error = null;
0 commit comments