File: warn-incomplete-url-c44cd03baf630c7c.yaml

package info (click to toggle)
python-oslo.db 17.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,296 kB
  • sloc: python: 10,081; sh: 33; makefile: 25
file content (14 lines) | stat: -rw-r--r-- 600 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
upgrade:
  - |
    oslo.db now logs a warning when the connection URL does not
    explicitly mention a driver. The default driver is still used, but
    in some cases, such as MySQL, the default is incompatible with the
    concurrency library eventlet.
  - |
    It is strongly recommended to use the `PyMySQL
    <https://pypi.python.org/pypi/PyMySQL>`__ driver when connecting
    to a MySQL-compatible database to ensure the best compatibility
    with the concurrency library eventlet. To use PyMySQL, ensure the
    connection URL is specified with ``mysql+pymysql://`` as the
    scheme.