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
Currently luigi tasks are using separate parameters for port specification.
E.g. class DockerDBTestEnvironmentParameter uses 3 separate parameters
DockerDBTestEnvironmentParameter
database_port_forward = luigi.OptionalParameter(None, significant=False) bucketfs_port_forward = luigi.OptionalParameter(None, significant=False) ssh_port_forward = luigi.OptionalParameter(None, significant=False)
The current ticket proposes to combine these parameters into a single parameter of type Ports:
port_forwards = JsonPickleParameter(Ports, significant=False)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently luigi tasks are using separate parameters for port specification.
E.g. class
DockerDBTestEnvironmentParameter
uses 3 separate parametersThe current ticket proposes to combine these parameters into a single parameter of type Ports:
The text was updated successfully, but these errors were encountered: