# HG changeset patch # User Francisco J Ballesteros # Date 1317053034 -7200 # Node ID 731e3f37783ab6fb10f4efa712e757fc3b56b68f # Parent b06eac0262b997d76c0a3507d4585f00d691ec0d codereview: this is an unfix. rsc wanted us to report on which case codereview did not print messages synchronously. I'm sure I saw async messages, but cannot reproduce that now. I'm undoing the fix so that the next time it happens we could tell rsc in which case did it happen. R=nix-dev, noah.evans, rminnich, nemo CC=nix-dev http://codereview.appspot.com/5128050 diff -r b06eac0262b9 -r 731e3f37783a sys/lib/codereview/codereview.py --- a/sys/lib/codereview/codereview.py Mon Sep 26 08:54:36 2011 -0700 +++ b/sys/lib/codereview/codereview.py Mon Sep 26 18:03:54 2011 +0200 @@ -550,9 +550,9 @@ # with requests for passwords, and things become very # confussing. def set_status(s): - print >>sys.stderr, "\t", time.asctime(), s -# global global_status -# global_status = s +# print >>sys.stderr, "\t", time.asctime(), s + global global_status + global_status = s #unused class StatusThread(threading.Thread): @@ -1568,7 +1568,7 @@ def reposetup(ui, repo): global original_match if original_match is None: -# start_status_thread() + start_status_thread() original_match = cmdutil.match cmdutil.match = ReplacementForCmdutilMatch RietveldSetup(ui, repo)