[core] Enable lineage reconstruction in CI#21519
Merged
stephanie-wang merged 5 commits intoray-project:masterfrom Feb 18, 2022
Merged
[core] Enable lineage reconstruction in CI#21519stephanie-wang merged 5 commits intoray-project:masterfrom
stephanie-wang merged 5 commits intoray-project:masterfrom
Conversation
0ab80de to
6f5f2ae
Compare
Member
|
4a6ec1b to
7ff0cb4
Compare
rkooo567
approved these changes
Feb 17, 2022
rkooo567
reviewed
Feb 17, 2022
release/e2e.py
Outdated
| "TEST_OUTPUT_JSON": results_json, | ||
| "TEST_STATE_JSON": state_json, | ||
| "IS_SMOKE_TEST": "1" if smoke_test else "0", | ||
| "RAY_lineage_pinning_enabled": "1", |
Contributor
There was a problem hiding this comment.
Can we split this part to a separate field and use update?
custom_env_vars = {
"RAY_lineage_pinning_enabled": "1",
}
env_vars = {
"RAY_ADDRESS": os.environ.get("RAY_ADDRESS", "auto"),
"TEST_OUTPUT_JSON": results_json,
"TEST_STATE_JSON": state_json,
"IS_SMOKE_TEST": "1" if smoke_test else "0",
}
env_vars.update(custom_env_vars)
So that we can organize this better.
ericl
approved these changes
Feb 17, 2022
simonsays1980
pushed a commit
to simonsays1980/ray
that referenced
this pull request
Feb 27, 2022
Enables lineage reconstruction in all CI and release tests.
simonsays1980
pushed a commit
to simonsays1980/ray
that referenced
this pull request
Mar 8, 2022
Enables lineage reconstruction in all CI and release tests.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why are these changes needed?
Related issue number
Checks
scripts/format.shto lint the changes in this PR.