Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-core
Commits
71308317
Commit
71308317
authored
1 week ago
by
Pierre-Yves David
Browse files
Options
Downloads
Patches
Plain Diff
basedb: force connection to be in utc
See inline comments for details.
parent
2c966bae
Branches
master
Tags
v4.1.0
1 merge request
!413
basedb: force connection to be in utc
Pipeline
#14352
passed
14 hours ago
Stage: external
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/core/db/__init__.py
+14
-0
14 additions, 0 deletions
swh/core/db/__init__.py
with
14 additions
and
0 deletions
swh/core/db/__init__.py
+
14
−
0
View file @
71308317
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment