Nitesh Kumawat
Nitesh Kumawat
Hi @chappanagaraju0810 facing same issue. did you find any solution ?
Okay, I am using aws lambda function so have to add the package manually.
BTW, fixed the issue by downloading the package on aws CloudShell.
Hi @mzitnik password contains `+` and connection failing. version: 0.6.4
After using the encoded password, the issue was fixed. `String encodedPassword = URLEncoder.encode(password, StandardCharsets.UTF_8.toString());`
We are also experiencing the same issue. Is there any workaround apart from turning off the TAGGING_SYSTEM feature flag?
I was able to fix it after commenting below lines in `superset/tags/core.py` file. ``` sqla.event.listen(SqlaTable, "after_insert", DatasetUpdater.after_insert) sqla.event.listen(SqlaTable, "after_update", DatasetUpdater.after_update) sqla.event.listen(SqlaTable, "after_delete", DatasetUpdater.after_delete) ```