We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In file spawn_test_database.py ssh_key_file is re-used and overwritten several times: sometimes it gets a string assigned, sometimes a Path.
spawn_test_database.py
ssh_key_file
Originally posted by @tomuben in #426 (comment)
We should different variables and avoid re-assigning to the luigi parameter.
SpawnTestDockerDatabase.ssh_key_file
str
ssh_key_file : str = luigi.OptionalParameter(None, significant=False) # type: ignore
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Background
In file
spawn_test_database.py
ssh_key_file
is re-used and overwritten several times: sometimes it gets a string assigned, sometimes a Path.Originally posted by @tomuben in #426 (comment)
We should different variables and avoid re-assigning to the luigi parameter.
Acceptance Criteria
SpawnTestDockerDatabase.ssh_key_file
must bestr
:The text was updated successfully, but these errors were encountered: