Skip to content

Commit 8baf166

Browse files
author
Talia Chopra
committed
Merge branch 'master' into sm-distributed-versioning
2 parents 7970fd5 + 0351197 commit 8baf166

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v2.23.5 (2021-01-18)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* increase time allowed for trial components to index
8+
39
## v2.23.4.post0 (2021-01-14)
410

511
### Documentation Changes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.23.5.dev0
1+
2.23.6.dev0

tests/integ/sagemaker/lineage/test_artifact.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,12 @@ def test_list(artifact_objs, sagemaker_session):
7878

7979

8080
def test_downstream_trials(trial_associated_artifact, trial_obj, sagemaker_session):
81-
# wait for TC to index
82-
time.sleep(3)
83-
84-
trials = trial_associated_artifact.downstream_trials(sagemaker_session=sagemaker_session)
81+
# allow trial components to index, 30 seconds max
82+
for i in range(3):
83+
time.sleep(10)
84+
trials = trial_associated_artifact.downstream_trials(sagemaker_session=sagemaker_session)
85+
if len(trials) > 0:
86+
break
8587

8688
assert len(trials) == 1
8789
assert trial_obj.trial_name in trials

0 commit comments

Comments
 (0)