fix!: set AWS_ENDPOINT_URL_DEADLINE after installing service model #96
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.
What was the problem/requirement? (What/Why)
Main issue:
AWS_ENDPOINT_URL_DEADLINE
to tell boto that we want requests to Deadline Cloud to go to a different endpoint.Small issues:
KEEP_WORKER_AFTER_FAILURE
configuration was not working, workers are still shutting down after failing to startWORKER_REGION
configuration is unnecessarily specific to the worker. The region can be applied to all components created by the test fixtures.What was the solution? (How)
AWS_ENDPOINT_URL_DEADLINE
whenever we install a service model.json.gz
) service model filesServiceModel
class was responsible for too many things. Removed the file paths and the AWS CLI commands from the class to simplify the code.KEEP_WORKER_AFTER_FAILURE
actually keep the worker around after failingWORKER_REGION
and useREGION
insteadWhat is the impact of this change?
KEEP_WORKER_AFTER_FAILURE
worksWORKER_REGION
configuration is deprecatedHow was this change tested?
hatch build && hatch run test
Was this change documented?
No
Is this a breaking change?
Yes
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.