Aaron Yi

Results 24 comments of Aaron Yi

pull the docker image (locate in CloudFormation template), replace with your own config file and re-build docker image, then replace the image url in CloudFormation template

Hi, the upstream sync up in on going, and I assume BigQuery support is what you need I such release?

1.4 is not mandatory for BigQuery, the dependency you need to install is https://github.com/googleapis/python-bigquery-sqlalchemy, with command `pip install sqlalchemy-bigquery`

@nazbadat v1.4.1 is now merged in official solution, kindly let me know your further feedback.

please check https://github.com/apache/superset/blob/master/docker-compose.yml#L104 for node part

You need to replace image url in CloudFormation template after you pack your own image.

Hi, will you please provide your input password? The regex to validate password pattern is like ^(?=.*[a-z])(?=.*[A-Z])(?=.*[@$!%*?&\\-_])[A-Za-z\\d@$!%*?&\\-_]{8,}$

Thanks for your suggestion, we may consider to rules below: - password must contain 1 number (0-9) - password must contain 1 uppercase letters - password must contain 1 lowercase...

new password regex update in official solution, kindly let me know your further feedback

underscore and colon are removed from non-alpha numeric number list with regex ?=.*[^\w\d\s:], so password 'Aa12345@', 'Aa12345*' are accepted, while 'Aa12345_' and 'Aa12345:' not