Expire disconnected connections if they aren't needed or can't reconnect
[irker.git] / filter-test.py
index ae91127cb920b64de19d2259780325f0c6c06072..b6f7f2ca54a5a7e502b20eb6a4003803151a943b 100755 (executable)
@@ -2,18 +2,17 @@
 #
 # Test hook to launch an irker instance (if it doesn't already exist)
 # just before shipping the notification. We start it in in another terminal
-# so you can watch the debug messages. Probably only of interest only to
+# so you can watch the debug messages. Intended to be used in the root
+# directory of the irker repo. Probably only of interest only to irker
 # developers
 #
-# To use it, set up irkerhook.py to file on each commit.
-# Then set the filtercmd variable in your repo config as follows:
+# To use this, set up irkerhook.py to fire on each commit.  Creating a
+# .git/hooks/post-commit file containing the line "irkerhook.py"; be
+# sure to make the opos-commit file executable.  Then set the
+# filtercmd variable in your repo config as follows:
 # 
 # [irker]
 #      filtercmd = filter-test.py
-#
-# This is rather antisocial - imagine thousands of irkerds holding open
-# connections to IRCDs.  It's better to go through an instance running
-# at your forge or set up for shared use by your intranet administrator.
 
 import os, sys, json, subprocess, time
 metadata = json.loads(sys.argv[1])
@@ -27,7 +26,7 @@ irkerd_count = len([x for x in data.split("\n") if x.find("irkerd") != -1])
 if not irkerd_count:
     os.system("gnome-terminal --title 'irkerd' -e 'irkerd -d 2' &")
 
-time.sleep(0.1)        # Avoid a race condition
+time.sleep(0.5)        # Avoid a race condition
 
 print json.dumps(metadata)
 # end