Skip to content
Snippets Groups Projects
Commit 259c9658 authored by Chris Larsen's avatar Chris Larsen
Browse files

[hbase098] Fix #923 by interrupting the current thread.

parent 5fbded72
No related branches found
No related tags found
No related merge requests found
......@@ -471,7 +471,8 @@ public class HBaseClient extends com.yahoo.ycsb.DB {
try {
t.join();
} catch (InterruptedException ignored) {
//ignored
System.err.println("interrupted");
Thread.currentThread().interrupt();
}
}
long en = System.currentTimeMillis();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment