Skip to content

Commit

Permalink
resolve compile after cherry-pick
Browse files Browse the repository at this point in the history
  • Loading branch information
jja725 committed May 1, 2023
1 parent 09f6f8a commit f7b1cef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantLock;
Expand Down Expand Up @@ -191,6 +192,11 @@ public long pos() {
}
}

@Override
public Optional<String> getUfsContentHash() {
return Optional.empty();
}

@Override
public void writeChunk(final ByteBuf buf) throws IOException {
final long len;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private UfsStatus getStatus(String path, String fileName) throws IOException {

@Override
public UfsStatus getStatus(String path) throws IOException {
return getStatus(path, null);
return getStatus(path, GetFileStatusOptions.defaults());
}

@Override
Expand Down

0 comments on commit f7b1cef

Please sign in to comment.