Skip to content
Open
Show file tree
Hide file tree
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
@@ -1,4 +1,5 @@
{
"https://github.com/apache/beam/pull/36822": "Testing removal of a timestamp check",
"https://github.com/apache/beam/pull/34902": "Introducing OutputBuilder",
"comment": "Modify this file in a trivial way to cause this test suite to run",
"modification": 2,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"https://github.com/apache/beam/pull/36822": "Testing removal of a timestamp check",
"https://github.com/apache/beam/pull/34902": "Introducing OutputBuilder",
"comment": "Modify this file in a trivial way to cause this test suite to run",
"https://github.com/apache/beam/pull/31156": "noting that PR #31156 should run this test",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"https://github.com/apache/beam/pull/36822": "Testing removal of a timestamp check",
"https://github.com/apache/beam/pull/34902": "Introducing OutputBuilder",
"https://github.com/apache/beam/pull/35213": "Eliminating getPane() in favor of getPaneInfo()",
"https://github.com/apache/beam/pull/35177": "Introducing WindowedValueReceiver to runners",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"https://github.com/apache/beam/pull/36822": "Testing removal of a timestamp check",
"https://github.com/apache/beam/pull/34902": "Introducing OutputBuilder",
"https://github.com/apache/beam/pull/35213": "Eliminating getPane() in favor of getPaneInfo()",
"https://github.com/apache/beam/pull/35177": "Introducing WindowedValueReceiver to runners",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"https://github.com/apache/beam/pull/36822": "Testing removal of a timestamp check",
"https://github.com/apache/beam/pull/34902": "Introducing OutputBuilder",
"https://github.com/apache/beam/pull/35213": "Eliminating getPane() in favor of getPaneInfo()",
"https://github.com/apache/beam/pull/35177": "Introducing WindowedValueReceiver to runners",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,6 @@ public <T> void outputWindowedValue(
.setPaneInfo(paneInfo)
.setReceiver(
wv -> {
checkTimestamp(elem.getTimestamp(), wv.getTimestamp());
SimpleDoFnRunner.this.outputWindowedValue(tag, wv);
})
.output();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1860,7 +1860,7 @@ public OutputBuilder<OutputT> builder(OutputT value) {
.withValue(value)
.setReceiver(
windowedValue -> {
checkTimestamp(windowedValue.getTimestamp());
// checkTimestamp(windowedValue.getTimestamp());
outputTo(mainOutputConsumer, windowedValue);
});
}
Expand Down
Loading