Skip to content

Commit

Permalink
temp commit to debug CI failure
Browse files Browse the repository at this point in the history
Signed-off-by: Dan O'Reilly <[email protected]>
  • Loading branch information
dano committed May 3, 2024
1 parent fec0af2 commit a049b30
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,11 @@ public void testInterceptors() {
client.createSchedule(
scheduleId, createTestSchedule().build(), ScheduleOptions.newBuilder().build());
try {
assertTrue(client.listSchedules().anyMatch(s -> s.getScheduleId().equals(scheduleId)));
List<ScheduleListDescription> scheds = client.listSchedules().collect(Collectors.toList());
System.out.println("id: " + handle.getId());
System.out.println(
"Schedules: " + scheds.stream().map(s -> s.getScheduleId()).collect(Collectors.toList()));
assertTrue(scheds.stream().anyMatch(s -> s.getScheduleId().equals(scheduleId)));
handle.describe();
handle.pause();
handle.unpause();
Expand Down

0 comments on commit a049b30

Please sign in to comment.