You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2019/01/14 22:35:54 UTC

[beam] 01/01: Fix comment typo in statesampler_test

This is an automated email from the ASF dual-hosted git repository.

altay pushed a commit to branch aaltay-patch-1
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 346ca57900f78a315755e35c0f5c8e253ee3a0b0
Author: Ahmet Altay <aa...@gmail.com>
AuthorDate: Mon Jan 14 14:35:46 2019 -0800

    Fix comment typo in statesampler_test
---
 sdks/python/apache_beam/runners/worker/statesampler_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/apache_beam/runners/worker/statesampler_test.py b/sdks/python/apache_beam/runners/worker/statesampler_test.py
index 1ff0c5c..176f6e5 100644
--- a/sdks/python/apache_beam/runners/worker/statesampler_test.py
+++ b/sdks/python/apache_beam/runners/worker/statesampler_test.py
@@ -35,7 +35,7 @@ from apache_beam.utils.counters import CounterName
 class StateSamplerTest(unittest.TestCase):
 
   # Due to somewhat non-deterministic nature of state sampling and sleep,
-  # this test is flaky when state duraiton is low.
+  # this test is flaky when state duration is low.
   # Since increasing state duration significantly would also slow down
   # the test suite, we are retrying twice on failure as a mitigation.
   @retry(reraise=True, stop=stop_after_attempt(3))