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 loader has only one setting sqlalchemy_url with is not convenient in cases:
sqlalchemy_url
secret
meltano.yml
What do you think of breaking change like this?
config_jsonschema = th.PropertiesList( th.Property( "driver", th.StringType, required=False, description="Driver type", default="http", allowed_values=["http", "native", "asynch"] ), th.Property( "username", th.StringType, required=False, description="Database user", default="default", ), th.Property( "password", th.StringType, required=True, description="Username password", secret=True ), th.Property( "host", th.StringType, required=False, description="Database host", default="localhost" ), th.Property( "port", th.IntegerType, required=False, description="Database connection port", default=8123, ), th.Property( "database", th.StringType, required=False, description="Database name", default="default", ), th.Property( "secure", th.BooleanType, description="Should the connection be secure", default=False ), th.Property( "verify", th.BooleanType, description="Should secure connection need to verify SSL/TLS", default=True ), ).to_dict()
The text was updated successfully, but these errors were encountered:
Does this need to be a breaking change, could we instead provide both configuration options?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently loader has only one setting
sqlalchemy_url
with is not convenient in cases:secret
type of settingmeltano.yml
What do you think of breaking change like this?
The text was updated successfully, but these errors were encountered: