Skip to content

Commit

Permalink
fix(core): fix compilation after commit merge
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed Sep 12, 2024
1 parent 31823ca commit b4999c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ public Outputs outputs(final RunContext runContext) throws IOException {
return null;
}

try(Reader is = new BufferedReader(new InputStreamReader(runContext.storage().getFile(uri)))) {
try(InputStream is = runContext.storage().getFile(uri)) {
Map<String, URI> outputs = FileSerde
.readAll(is, new TypeReference<Map<String, URI>>() {})
.blockFirst();
Expand Down

0 comments on commit b4999c7

Please sign in to comment.