]> git.sur5r.net Git - bacula/bacula/commitdiff
Use Qmsg() in job.c watchdog callback.
authorKern Sibbald <kern@sibbald.com>
Fri, 4 Jul 2008 14:11:23 +0000 (14:11 +0000)
committerKern Sibbald <kern@sibbald.com>
Fri, 4 Jul 2008 14:11:23 +0000 (14:11 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.4@7303 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ChangeLog
bacula/ReleaseNotes
bacula/src/dird/job.c
bacula/src/version.h
bacula/technotes-2.4

index 99d0c013465e9b290c070752a066e4d2dd46121a..b33dfe17f9bc7d19f16cf5a4ebb2995f74b569b9 100644 (file)
@@ -1,6 +1,22 @@
               Technical notes on version 2.4.x
 
 General:
+Release Beta version 2.4.1-b2
+04Jul08 
+kes  Use Qmsg() in job.c watchdog callback.
+03Jul08
+kes  Release main control rwlock if ABORTing.
+kes  Make watchdog connect timeout queue messages rather than sending
+     directly to avoid lock conflicts with the real thread.
+kes  Remove const char that causes problems with Python, which has
+     older 'incorrect' headers.
+kes  Add const char in dbd.c to avoid compiler warnings.
+02Jul08
+kes  Fix mtx-changer to detect both versions of Ubuntu (Debian)
+     mt. This fixes bug #1116.
+kes  Fix failure of 2drive-concurrent-test. Always read label;
+     clear_unload() only after drive is defined in acquire_for_read().
+
 Release Beta version 2.4.1-b1
 01Jul08
 kes  Back out bad src/lib/base64.c change.
index 07301011e0fb710abe4ed64fbbbd523194a01ab7..ec0870155415d8902f558a96b6cc768b4b1f26ac 100644 (file)
@@ -1,5 +1,5 @@
 
-       Release Notes for Bacula 2.4.1-b1
+       Release Notes for Bacula 2.4.1-b2
 
   Bacula code: Total files = 500 Total lines = 188,654 (*.h *.c *.in)
 
@@ -14,6 +14,23 @@ reparse directories backed up, you must explicitly include them
 in your FileSet.
 ==============================================================
 
+Release Beta version 2.4.1-b2
+kes  Use Qmsg() in job.c watchdog callback.
+kes  Release main control rwlock if ABORTing.
+kes  Make watchdog connect timeout queue messages rather than sending
+     directly to avoid lock conflicts with the real thread.
+kes  Remove const char that causes problems with Python, which has
+     older 'incorrect' headers.
+kes  Add const char in dbd.c to avoid compiler warnings.
+kes  Fix mtx-changer to detect both versions of Ubuntu (Debian)
+     mt. This fixes bug #1116.
+kes  Fix failure of 2drive-concurrent-test. Always read label;
+     clear_unload() only after drive is defined in acquire_for_read().
+
+
+==========
+Release 2.4.1-b1
+
 This release consists of a number of bug fixes since version 2.4.0.
 Important sections of the Storage daemon mount system have been
 enhanced to correctly loading autochanger volumes when the drive
index e1e96dbe28b9442181279a8d7a4eb9386961dd98..ec0c3b6fb2d87085004a4f45c49e699b293f955f 100644 (file)
@@ -494,12 +494,12 @@ static void job_monitor_watchdog(watchdog_t *self)
       /* check MaxWaitTime */
       if (job_check_maxwaittime(control_jcr, jcr)) {
          set_jcr_job_status(jcr, JS_Canceled);
-         Jmsg(jcr, M_FATAL, 0, _("Max wait time exceeded. Job canceled.\n"));
+         Qmsg(jcr, M_FATAL, 0, _("Max wait time exceeded. Job canceled.\n"));
          cancel = true;
       /* check MaxRunTime */
       } else if (job_check_maxruntime(control_jcr, jcr)) {
          set_jcr_job_status(jcr, JS_Canceled);
-         Jmsg(jcr, M_FATAL, 0, _("Max run time exceeded. Job canceled.\n"));
+         Qmsg(jcr, M_FATAL, 0, _("Max run time exceeded. Job canceled.\n"));
          cancel = true;
       }
 
index f2ce173d8c660e2e179f85254cba8a2639e9eacc..d2f5499ef404cb025d5a3777b8b2084ae134edb6 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "2.4.1-b2"
-#define BDATE   "02 July 2008"
-#define LSMDATE "02Jul08"
+#define BDATE   "04 July 2008"
+#define LSMDATE "04Jul08"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2008 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2008"       /* year for copyright messages in progs */
index 7f463bb4f1579765573cb01d55f826d3bfd81a2d..5484897ca0ab90baf5c0e0c4297578815e23c35e 100644 (file)
@@ -1,6 +1,10 @@
               Technical notes on version 2.4
 
 General:
+
+Release Beta version 2.4.1-b2
+04Jul08 
+kes  Use Qmsg() in job.c watchdog callback.
 03Jul08
 kes  Release main control rwlock if ABORTing.
 kes  Make watchdog connect timeout queue messages rather than sending