You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2021/09/06 21:22:14 UTC

[GitHub] [beam] AlikRodriguez commented on a change in pull request #15118: [BEAM-11666] flake on RecordingManagerTest

AlikRodriguez commented on a change in pull request #15118:
URL: https://github.com/apache/beam/pull/15118#discussion_r703073404



##########
File path: sdks/python/apache_beam/runners/interactive/recording_manager_test.py
##########
@@ -463,14 +478,16 @@ def test_clear(self):
     recording.wait_until_finish()
 
     # Assert that clearing only one recording clears that recording.
-    self.assertGreater(rm_1.describe()['size'], 0)
-    self.assertGreater(rm_2.describe()['size'], 0)
-    rm_1.clear()
-    self.assertEqual(rm_1.describe()['size'], 0)
-    self.assertGreater(rm_2.describe()['size'], 0)
-
-    rm_2.clear()
-    self.assertEqual(rm_2.describe()['size'], 0)
+    if rm_1.describe()['state'] != PipelineState.STOPPED \
+            and rm_2.describe()['state'] != PipelineState.STOPPED:

Review comment:
       You are right, this specific error change the state to FAILED, I confused the comparison, I update it.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@beam.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org