Skip to content

Commit f7f126b

Browse files
committed
Fix compilation error
1 parent dc79f80 commit f7f126b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ private void failInit(Channel ch, IOException e) {
183183
}
184184

185185
private void saslNegotiate(final Channel ch) {
186-
UserGroupInformation ticket = provider.getRealUser(remoteId.getTicket().getUGI());
186+
UserGroupInformation ticket = provider.getRealUser(remoteId.getTicket());
187187
if (ticket == null) {
188188
failInit(ch, new FatalConnectionException("ticket/user is null"));
189189
return;

0 commit comments

Comments
 (0)