diff --git a/docs/en_US/release_notes_4_29.rst b/docs/en_US/release_notes_4_29.rst index d60fb696d..6e1de548b 100644 --- a/docs/en_US/release_notes_4_29.rst +++ b/docs/en_US/release_notes_4_29.rst @@ -31,3 +31,4 @@ Bug fixes | `Issue #5992 `_ - Fixed an issue where escape character is shown when the server/database name has some special characters. | `Issue #5998 `_ - Fixed an issue where schema diff doesn't show the result of compare if source schema has tables with RLS. | `Issue #6003 `_ - Fixed an issue where an illegal argument is showing for trigger SQL when a trigger is created for View. +| `Issue #6022 `_ - Fixed an issue where shared servers import is failing. diff --git a/web/setup.py b/web/setup.py index fbc7f1e04..3f6676660 100644 --- a/web/setup.py +++ b/web/setup.py @@ -346,6 +346,9 @@ def load_servers(args): new_server.tunnel_authentication = \ obj.get("TunnelAuthentication", None) + new_server.shared = \ + obj.get("Shared", None) + db.session.add(new_server) try: