You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by dh...@apache.org on 2016/05/03 22:52:01 UTC

[1/2] incubator-beam git commit: Closes #278

Repository: incubator-beam
Updated Branches:
  refs/heads/master 6260cc137 -> 9b9d73fbf


Closes #278


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/9b9d73fb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/9b9d73fb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/9b9d73fb

Branch: refs/heads/master
Commit: 9b9d73fbf7a63b86871f835bb8e1cf5ad7437e91
Parents: 6260cc1 58ac312
Author: Dan Halperin <dh...@google.com>
Authored: Tue May 3 13:51:52 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Tue May 3 13:51:52 2016 -0700

----------------------------------------------------------------------
 .../beam/sdk/util/IntervalBoundedExponentialBackOff.java       | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------



[2/2] incubator-beam git commit: [BEAM-168] IntervalBEB: remove deprecated function

Posted by dh...@apache.org.
[BEAM-168] IntervalBEB: remove deprecated function

The pre-commit wordcount test will confirm that this does not break the
Cloud Dataflow worker.


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/58ac312c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/58ac312c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/58ac312c

Branch: refs/heads/master
Commit: 58ac312cd21daca33ac3c49f50c09191811e3928
Parents: 6260cc1
Author: Dan Halperin <dh...@google.com>
Authored: Tue May 3 12:04:13 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Tue May 3 13:51:52 2016 -0700

----------------------------------------------------------------------
 .../beam/sdk/util/IntervalBoundedExponentialBackOff.java       | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/58ac312c/sdks/java/core/src/main/java/org/apache/beam/sdk/util/IntervalBoundedExponentialBackOff.java
----------------------------------------------------------------------
diff --git a/sdks/java/core/src/main/java/org/apache/beam/sdk/util/IntervalBoundedExponentialBackOff.java b/sdks/java/core/src/main/java/org/apache/beam/sdk/util/IntervalBoundedExponentialBackOff.java
index a1d795b..92ff2f0 100644
--- a/sdks/java/core/src/main/java/org/apache/beam/sdk/util/IntervalBoundedExponentialBackOff.java
+++ b/sdks/java/core/src/main/java/org/apache/beam/sdk/util/IntervalBoundedExponentialBackOff.java
@@ -54,12 +54,6 @@ public class IntervalBoundedExponentialBackOff implements BackOff {
   private final long initialIntervalMillis;
   private int currentAttempt;
 
-  // BEAM-168: https://issues.apache.org/jira/browse/BEAM-168
-  @Deprecated
-  public IntervalBoundedExponentialBackOff(int maximumIntervalMillis, long initialIntervalMillis) {
-    this((long) maximumIntervalMillis, initialIntervalMillis);
-  }
-
   public IntervalBoundedExponentialBackOff(long maximumIntervalMillis, long initialIntervalMillis) {
     Preconditions.checkArgument(
         maximumIntervalMillis > 0, "Maximum interval must be greater than zero.");