Skip to content
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
7aed45e
Update py_autofix.yml
tianzhipeng-git Mar 11, 2025
14443e7
Merge branch 'langflow-ai:main' into main
jeevic Mar 18, 2025
b5c90b0
Merge branch 'langflow-ai:main' into main
jeevic Mar 21, 2025
097c64d
Merge branch 'langflow-ai:main' into main
jeevic Mar 22, 2025
3381304
Merge branch 'langflow-ai:main' into main
jeevic Mar 25, 2025
6649f41
Merge branch 'langflow-ai:main' into main
jeevic Mar 27, 2025
31ec542
Merge branch 'langflow-ai:main' into main
jeevic Apr 6, 2025
e4561f2
Merge branch 'langflow-ai:main' into main
jeevic Apr 8, 2025
b275a3b
Merge branch 'langflow-ai:main' into main
jeevic Apr 11, 2025
580a70f
Merge branch 'langflow-ai:main' into main
jeevic Apr 22, 2025
fcdc6c7
Merge branch 'langflow-ai:main' into main
jeevic Apr 25, 2025
0ee417d
Merge branch 'langflow-ai:main' into main
jeevic Apr 30, 2025
bcae3a6
Merge branch 'langflow-ai:main' into main
jeevic May 19, 2025
5cb1ac2
Revert "Update py_autofix.yml"
jeevic May 19, 2025
3729261
feat: set PostgreSQL timezone to UTC in connection kwargs
jeevic May 19, 2025
ab0047c
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic May 20, 2025
479be77
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic May 21, 2025
ce85c40
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic May 22, 2025
b98b14a
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic May 23, 2025
381b466
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic May 27, 2025
a6de9f2
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Jun 28, 2025
1f9e1b9
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Jul 7, 2025
ad10ee6
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Jul 17, 2025
4b16527
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Jul 22, 2025
1126101
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Aug 8, 2025
8a0d1d7
feat: support PostgreSQL connection with both 'postgresql' and 'postg…
jeevic Aug 8, 2025
2a49d33
Merge branch 'feat_postgressql_init_utc_timezone' of github.com:qifu-…
jeevic Aug 8, 2025
bf5138f
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Aug 10, 2025
5243725
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Aug 12, 2025
e00bdfe
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Aug 13, 2025
1bc9975
Merge branch 'main' into feat_postgressql_init_utc_timezone
jeevic Aug 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/backend/base/langflow/services/database/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,9 @@ def _get_connect_args(self):
"check_same_thread": False,
"timeout": settings.db_connect_timeout,
}

# For PostgreSQL, set the timezone to UTC
if settings.database_url and settings.database_url.startswith(("postgresql", "postgres")):
return {"options": "-c timezone=utc"}
return {}

def on_connection(self, dbapi_connection, _connection_record) -> None:
Expand Down
Loading