summaryrefslogtreecommitdiff
path: root/src/site.clj
diff options
context:
space:
mode:
authorScott Ostler <scottbot9000@gmail.com>2010-08-23 16:02:41 -0400
committerScott Ostler <scottbot9000@gmail.com>2010-08-23 16:02:41 -0400
commit82c08bc3cf6191146f10cc3cba605f5226281243 (patch)
tree17db1cddef574314c477165aefc713e841c3608c /src/site.clj
parentb1f97019665fed6c9a2fae4c4269ede1a388c63b (diff)
Changed server startup order
Diffstat (limited to 'src/site.clj')
-rw-r--r--src/site.clj6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/site.clj b/src/site.clj
index 92f6eb9..4ed5d29 100644
--- a/src/site.clj
+++ b/src/site.clj
@@ -1290,12 +1290,12 @@ order by count desc limit ? offset ?")
(load-rooms!)
(start! reserved-nicks)
(def server (start-server (options :port)))
-(start! *user-scores*)
-(start! *user-info*)
(start! *active-mutes*)
; Delay the following to reduce start-load
-(Thread/sleep 3000)
+(Thread/sleep 15000)
+(start! *user-scores*)
+(start! *user-info*)
(start-user-flusher!)
(start-session-pruner!)
(start! hall-results)