Skip to content
Merged
Changes from 2 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 @@ -80,8 +80,13 @@ public void testMetadataPropagationAcrossShuffleParameter() {
pipeline.run();
}

/**
* Tests metadata propagation for a parameter. Note: PAssert internally introduces a GroupByKey.
* This test works only with DirectRunner and runners that support metadata propagation.
Comment thread
shunping marked this conversation as resolved.
Outdated
* See {@link #testMetadataPropagationAcrossGBK} for more information.
*/
@Test
@Category({ValidatesRunner.class, NeedsRunner.class})
@Category(NeedsRunner.class)
public void testMetadataPropagationParameter() {
WindowedValues.WindowedValueCoder.setMetadataSupported();
PCollection<String> results =
Expand Down
Loading