Skip to content

Commit c85afab

Browse files
authored
Merge pull request #116 from cayetanobv/develop
metadata updated and reduced pgsql connection timeout
2 parents 098a249 + e247960 commit c85afab

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

connectors/postgis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def __init__(self, uri):
147147
self.passwd = uri.password()
148148

149149
try:
150-
self.con = psycopg2.connect(self.connection_info(), connect_timeout=10)
150+
self.con = psycopg2.connect(self.connection_info(), connect_timeout=5)
151151
except psycopg2.OperationalError as e:
152152
raise DbError(e)
153153

metadata.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ qgisMinimumVersion=3.0
77
qgisMaximumVersion=3.99
88
author=Anita Graser, Ko Nagase, Vicky Vergara
99
10-
changelog=2.2.2
10+
changelog=3.0.0
11+
- Support for QGIS 3 (Python 3 and PyQt5).
12+
- Removed deprecated functions.
13+
2.2.2
1114
- Bug fix: activating alphashape.py to use BBOX by mixedbredie
1215
2.2.1
1316
- Bug fix activating plugin

0 commit comments

Comments
 (0)