Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Aug 18, 2024
1 parent 4c61647 commit 37f4d60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void writeJourney(Query query) {
.sorted((a, b) -> -Long.compare(b.distance(), a.distance()))
.peek(j -> recordedJourneys.add(j.patient))
.limit(100)
.forEach(journey -> write(tmpPath, journey));
.forEach(journey -> write(Path.of(tmpPath), journey));
LOG.info("Done creating user journeys for concept {} to {}", concept, tmpPath);
}
} catch (IOException e) {
Expand Down

0 comments on commit 37f4d60

Please sign in to comment.