Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Oct 29, 2021
1 parent f85cd8b commit cc1fb2b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import java.util.Set;
import java.util.concurrent.CompletionException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;

import javax.inject.Inject;

Expand All @@ -54,7 +53,6 @@
import io.cryostat.net.web.WebServer;
import io.cryostat.net.web.http.HttpMimeType;
import io.cryostat.net.web.http.api.ApiVersion;
import io.cryostat.net.web.http.generic.TimeoutHandler;
import io.cryostat.recordings.RecordingNotFoundException;

import com.nimbusds.jwt.JWT;
Expand Down Expand Up @@ -123,7 +121,7 @@ public void handleWithValidJwt(RoutingContext ctx, JWT jwt) throws Exception {
.end(
reportService
.get(getConnectionDescriptorFromJwt(ctx, jwt), recordingName)
.get(TimeoutHandler.TIMEOUT_MS, TimeUnit.MILLISECONDS));
.get());
} catch (CompletionException | ExecutionException ee) {

Exception rootCause = (Exception) ExceptionUtils.getRootCause(ee);
Expand Down

0 comments on commit cc1fb2b

Please sign in to comment.