File tree Expand file tree Collapse file tree
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232import org .apache .hadoop .fs .Path ;
3333import org .apache .hadoop .hbase .Cell ;
3434import org .apache .hadoop .hbase .HBaseConfiguration ;
35+ import org .apache .hadoop .hbase .exceptions .TimeoutIOException ;
3536import org .apache .hadoop .hbase .io .ByteBufferWriter ;
3637import org .apache .hadoop .hbase .io .asyncfs .AsyncFSOutput ;
3738import org .apache .hadoop .hbase .io .asyncfs .AsyncFSOutputHelper ;
@@ -209,7 +210,7 @@ private long writeWALMetadata(Consumer<CompletableFuture<Long>> action) throws I
209210 Throwables .propagateIfPossible (e .getCause (), IOException .class );
210211 throw new RuntimeException (e .getCause ());
211212 } catch (TimeoutException e ) {
212- throw new RuntimeException (e );
213+ throw new TimeoutIOException (e );
213214 }
214215 }
215216
You can’t perform that action at this time.
0 commit comments