diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-01-02 11:55:52 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-01-02 11:55:52 -0500 |
commit | 0679b4f1fdd82b2456292e9cdd7a971209755685 (patch) | |
tree | 36154b350a2734a2300add9450b5a76737cc80c0 /lib/sqlalchemy/testing/provision.py | |
parent | 2581655c545a0cf705e0347e81cd092896d3207c (diff) | |
download | sqlalchemy-0679b4f1fdd82b2456292e9cdd7a971209755685.tar.gz |
Further attempts to repair SQL server temp table issue
Still having non-reproducible failures where "user_tmp" cannot
be dropped. try isolating the table name around config.ident
Change-Id: I17e0a9674b22d246f0d52943b850e8f6de223305
Diffstat (limited to 'lib/sqlalchemy/testing/provision.py')
-rw-r--r-- | lib/sqlalchemy/testing/provision.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/provision.py b/lib/sqlalchemy/testing/provision.py index fb3d77dc4..589045453 100644 --- a/lib/sqlalchemy/testing/provision.py +++ b/lib/sqlalchemy/testing/provision.py @@ -70,7 +70,8 @@ def setup_config(db_url, options, file_config, follower_ident): # a symbolic name that tests can use if they need to disambiguate # names across databases - config.ident = follower_ident + if follower_ident: + config.ident = follower_ident if follower_ident: configure_follower(cfg, follower_ident) |