Skip to content
Snippets Groups Projects
Commit 71308317 authored by Pierre-Yves David's avatar Pierre-Yves David
Browse files

basedb: force connection to be in utc

See inline comments for details.
parent 2c966bae
Branches master
Tags v4.1.0
1 merge request!413basedb: force connection to be in utc
Pipeline #14352 passed
......@@ -105,6 +105,19 @@ def escape_copy_column(column: str) -> str:
BaseDbType = TypeVar("BaseDbType", bound="BaseDb")
def _force_utc_conn(conn: psycopg.Connection[Any]) -> None:
"""Set the connection to the UTC timezone instead of the local one
This is done to avoid psycopg returning timestamps in the local timezone
instead of the UTC one.
This is apparently the only way to do this, there are no arguments we could
pass to connect nor attributes we could set on the connection.
"""
with conn.transaction():
conn.execute("SET TIME ZONE 'UTC'")
class BaseDb:
"""Base class for swh.*.*Db.
......@@ -145,6 +158,7 @@ class BaseDb:
pool: psycopg pool of connections
"""
_force_utc_conn(conn)
self.conn = conn
self.pool = pool
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment