Revert "HBASE-17906 When a huge amount of data writing to hbase through thrift2, there will be a deadlock error. (Albert Lee)"
Mistaken commit.
This reverts commit 9dd5cda017
.
This commit is contained in:
parent
c8461456d0
commit
0cd4cec5d2
|
@ -432,6 +432,9 @@ public class ThriftServer extends Configured implements Tool {
|
|||
throw new RuntimeException("Could not parse the value provided for the port option", e);
|
||||
}
|
||||
|
||||
// Thrift's implementation uses '0' as a placeholder for 'use the default.'
|
||||
int backlog = conf.getInt(BACKLOG_CONF_KEY, 0);
|
||||
|
||||
// Local hostname and user name,
|
||||
// used only if QOP is configured.
|
||||
String host = null;
|
||||
|
|
Loading…
Reference in New Issue