summaryrefslogtreecommitdiff
path: root/src/utils.clj
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2010-09-02 02:04:50 -0400
committerScott Ostler <scottbot9000@gmail.com>2010-09-02 02:04:50 -0400
commit1bd31a5bf4ea0143b1a9002446f227cf3d99f4ca (patch)
treed3723cdad966e91dc0aee8c4571db67648e2c6b7 /src/utils.clj
parent33b9059366224c2f427f8ff502dda716b045ac91 (diff)
Change max db connections to 10, /fullscreen route
Diffstat (limited to 'src/utils.clj')
-rwxr-xr-xsrc/utils.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.clj b/src/utils.clj
index dd5530a..455f8a0 100755
--- a/src/utils.clj
+++ b/src/utils.clj
@@ -27,7 +27,7 @@
(.setDatabaseName db-name)
(.setUser db-user)
(.setPassword db-pass)
- (.setMaxConnections 20))}))
+ (.setMaxConnections 10))}))
;; moved this to here which doesn't seem right... maybe a 'settings.clj' or something?
(def *dumps-per-page* 20)