VitalyKapustin-git opened a new issue, #24978: URL: https://github.com/apache/superset/issues/24978
https://github.com/apache/superset/blob/571f33536e627ccf8b6cafac1d8c296e442e1ef6/superset/security/manager.py#L316-L317 I've named my database in database connections by FQDN like example.mycompany.local this code will work incorrect. I'll get `[exampl` for database var and `ny` for schema var. Could we prevent that if take last element from split array and replace slice to `replace()`? `schema_name = schema_permission.split(".")[-1].replace('[', '').replace(']', '')` `database_name = schema_permission.split(".")[0].replace('[', '').replace(']', '')` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
