Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
exposure-initializer
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
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Global Dynamic Exposure
exposure-initializer
Merge requests
!11
Resolve "Feature: Add custom PostGIS database timeout for queries"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Feature: Add custom PostGIS database timeout for queries"
7-feature-add-custom-postgis-database-timeout-for-queries
into
main
Overview
1
Commits
1
Pipelines
16
Changes
1
Merged
Danijel Schorlemmer
requested to merge
7-feature-add-custom-postgis-database-timeout-for-queries
into
main
2 years ago
Overview
1
Commits
1
Pipelines
16
Changes
1
Expand
Closes
#7 (closed)
\approve
@tara
@shinde
@laurens
Edited
2 years ago
by
Danijel Schorlemmer
0
0
Merge request reports
Compare
main
version 14
79a4c345
2 years ago
version 13
16991e37
2 years ago
version 12
f4d8ff97
2 years ago
version 11
e6f1e6cf
2 years ago
version 10
09b84dfc
2 years ago
version 9
7ee15776
2 years ago
version 8
2171e424
2 years ago
version 7
8cfa16f6
2 years ago
version 6
3f3486a8
2 years ago
version 5
815270ce
2 years ago
version 4
36abe5d3
2 years ago
version 3
d63dc7db
2 years ago
version 2
99bc7760
2 years ago
version 1
52a65375
2 years ago
main (base)
and
latest version
latest version
0b446d31
1 commit,
2 years ago
version 14
79a4c345
2 commits,
2 years ago
version 13
16991e37
1 commit,
2 years ago
version 12
f4d8ff97
12 commits,
2 years ago
version 11
e6f1e6cf
11 commits,
2 years ago
version 10
09b84dfc
10 commits,
2 years ago
version 9
7ee15776
9 commits,
2 years ago
version 8
2171e424
8 commits,
2 years ago
version 7
8cfa16f6
7 commits,
2 years ago
version 6
3f3486a8
6 commits,
2 years ago
version 5
815270ce
5 commits,
2 years ago
version 4
36abe5d3
4 commits,
2 years ago
version 3
d63dc7db
3 commits,
2 years ago
version 2
99bc7760
2 commits,
2 years ago
version 1
52a65375
1 commit,
2 years ago
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
exposureinitializer/exposureinitializer.py
+
1
−
0
Options
@@ -573,6 +573,7 @@ def command_line_interface():
"
port
"
:
postgis_config
[
"
Exposure
"
][
"
port
"
],
"
username
"
:
postgis_config
[
"
Exposure
"
][
"
username
"
],
"
password
"
:
postgis_config
[
"
Exposure
"
][
"
password
"
],
"
timeout
"
:
postgis_config
[
"
Exposure
"
].
get
(
"
timeout
"
,
None
),
}
exposure_database_object
=
PostGISExposure
(
**
exposure_db_config
)
Loading