git://git.iain.cx/iain
/
pstop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2fbfd7
)
Limit the pool size to avoid issues if existing connections get stuck
author
Simon J Mudd
<sjmudd@pobox.com>
Wed, 28 Jan 2015 07:36:26 +0000
(08:36 +0100)
committer
Simon J Mudd
<sjmudd@pobox.com>
Wed, 28 Jan 2015 07:36:26 +0000
(08:36 +0100)
main.go
patch
|
blob
|
history
diff --git
a/main.go
b/main.go
index
0197e83
..
facfa65
100644
(file)
--- a/
main.go
+++ b/
main.go
@@
-59,6
+59,9
@@
func connect_by_defaults_file( defaults_file string ) *sql.DB {
log.Fatal(err)
}
+ // deliberately limit the pool size to 5 to avoid "problems" if any queries hang.
+ dbh.SetMaxOpenConns(5) // hard-coded value!
+
return dbh
}