Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/4358#discussion_r142125479
--- Diff:
flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/TaskManagerLogHandler.java
---
@@ -158,9 +151,9 @@ protected void respondAsLeader(final
ChannelHandlerContext ctx, final Routed rou
cache = blobPortFuture.thenApplyAsync(
(Integer port) -> {
try {
- return new BlobCache(new
InetSocketAddress(jobManagerGateway.getHostname(), port), config, blobView);
+ return new
TransientBlobCache(new InetSocketAddress(jobManagerGateway.getHostname(),
port), config);
} catch (IOException e) {
- throw new
FlinkFutureException("Could not create BlobCache.", e);
+ throw new
FlinkFutureException("Could not create TransientBlobCache.", e);
--- End diff --
When rebasing, then this will be a
`java.util.concurrent.CompletionException`.
---