* Don't error out if estcmd fails, just print a warning message. estcmd is
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Tue, 20 Feb 2007 03:17:09 +0000 (03:17 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Tue, 20 Feb 2007 03:17:09 +0000 (03:17 +0000)
  to fragile to let it kill ikiwiki.

IkiWiki/Plugin/search.pm
debian/changelog
doc/bugs/edits_not_showing_up_in_compiled_pages.mdwn

index d35c33e76342f6d6b426810b1741ec20e6f56d7c..70d05d5a0fbe287946df41b120b16e4f87d02d31 100644 (file)
@@ -135,7 +135,7 @@ sub estcmd ($;@) { #{{{
                foreach (@_) {
                        print CHILD "$_\n";
                }
-               close(CHILD) || error("estcmd @params exited nonzero: $?");
+               close(CHILD) || print STDERR "estcmd @params exited nonzero: $?\n";
        }
        else {
                # child
index 1088fbfda0109d0789000d6b7c853eeb8fce021c..a439ab32f569ede41e8255cfd011eedeb5495032 100644 (file)
@@ -18,8 +18,10 @@ ikiwiki (1.44) UNRELEASED; urgency=low
   * Support anchors in wikilinks.
   * Add a "more" plugin based on one contributed by Ben to allow implementing
     those dreaded "Read more" links in blogs.
+  * Don't error out if estcmd fails, just print a warning message. estcmd is
+    to fragile to let it kill ikiwiki.
 
- -- Joey Hess <joeyh@debian.org>  Mon, 19 Feb 2007 20:56:25 -0500
+ -- Joey Hess <joeyh@debian.org>  Mon, 19 Feb 2007 22:12:25 -0500
 
 ikiwiki (1.43) unstable; urgency=low
 
index ae5f995a5d1e9bfbaedb048aa22cb812e9b860b3..b6090b4bd6ccc2dd7bd38431ea8b8e9c78da980e 100644 (file)
@@ -15,3 +15,6 @@ exactly. --[[Joey]]
 >>> Yes, it seems to have happened again. Added debugging to track it
 >>> down next time it occurs. It seems to be happening when you add things
 >>> to patchqueue. --[[Joey]]
+
+>>> Got it, it seems that htperestradier was dying and this was killing
+>>> ikiwiki before it could save state filed && [[bugs/done]], for real this time. --[[Joey]]