Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Aug 15, 2024
1 parent 7bd1887 commit 80a36f1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ public void backfillSchedules() {
ScheduleOptions options =
ScheduleOptions.newBuilder()
.setBackfills(
Arrays.asList(new ScheduleBackfill(backfillTime.minusMillis(20500), backfillTime.minusMillis(10000))))
Arrays.asList(
new ScheduleBackfill(
backfillTime.minusMillis(20500), backfillTime.minusMillis(10000))))
.build();
String scheduleId = UUID.randomUUID().toString();
Schedule schedule =
Expand Down

0 comments on commit 80a36f1

Please sign in to comment.