We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5fee2 commit 4a9f164Copy full SHA for 4a9f164
sdk/src/main/java/com/google/cloud/dataflow/sdk/io/bigtable/BigtableIO.java
@@ -976,9 +976,9 @@ public void initialize(PipelineOptions options) {}
976
public void finalize(Iterable<Long> writerResults, PipelineOptions options) {
977
long count = 0;
978
for (Long value : writerResults) {
979
- value += count;
+ count += value;
980
}
981
- logger.debug("Wrote {} elements to BigtableIO.Sink {}", sink);
+ logger.debug("Wrote {} elements to BigtableIO.Sink {}", count, sink);
982
983
984
@Override
0 commit comments