File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Unreleased
8
8
- The SQLAlchemy dialect has been split off into the `sqlalchemy-cratedb`_
9
9
package. See `Migrate from crate.client to sqlalchemy-cratedb`_ to learn
10
10
about necessary migration steps.
11
+ - Configured DB API interface attribute ``threadsafety = 1``, which signals
12
+ "Threads may share the module, but not connections."
11
13
12
14
.. _Migrate from crate.client to sqlalchemy-cratedb: https://cratedb.com/docs/sqlalchemy-cratedb/migrate-from-crate-client.html
13
15
.. _sqlalchemy-cratedb: https://pypi.org/project/sqlalchemy-cratedb/
Original file line number Diff line number Diff line change 32
32
__version__ = "0.35.2"
33
33
34
34
apilevel = "2.0"
35
- threadsafety = 2
35
+ threadsafety = 1
36
36
paramstyle = "qmark"
You can’t perform that action at this time.
0 commit comments