Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,13 @@ public void testTimerTag() {
new Instant(123),
new Instant(456),
timeDomain)
: TimerData.of(TIMER_ID, namespace, new Instant(123), new Instant(456), timeDomain);
: TimerData.of(
TIMER_ID,
namespace,
new Instant(123),
new Instant(456),
timeDomain,
TimerData.CausedByDrain.NORMAL);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Context: https://github.com/apache/beam/pull/37009/changes#r2765834617 changed the API, and this reverts us back to the behavior before that was merged (this test doesn't need any updated functionality)

assertEquals(expectedBytes, WindmillTagEncodingV2.instance().timerTag(prefix, timerData));
}
}
Expand Down
Loading