- Add example of proper index output to doc.
show index from File;
- Correct the Include syntax in the m4.xxx files in examples/conf
+- Document JobStatus and Termination codes.
Priority:
For 1.39:
+- Try turning on disk seek code.
- Possibly turn on St. Bernard code.
+- Fix bscan to report the JobType when restoring a job.
- Fix bextract to restore ACLs, or better yet, use common
routines.
- Do we migrate appendable Volumes?
- Fix re-read of last block to check if job has actually written
a block, and check if block was written by a different job
(i.e. multiple simultaneous jobs writing).
-- JobStatus and Termination codes.
- Some users claim that they must do two prune commands to get a
Volume marked as purged.
- Print warning message if LANG environment variable does not specify
Low priority:
- Get Perl replacement for bregex.c
-
- Given all the problems with FIFOs, I think the solution is to do something a
little different, though I will look at the code and see if there is not some
simple solution (i.e. some bug that was introduced). What might be a better
{
MQUEUE_ITEM *item;
P(msg_queue_mutex);
+ if (!jcr->msg_queue) {
+ goto bail_out;
+ }
jcr->dequeuing = true;
foreach_dlist(item, jcr->msg_queue) {
Jmsg(jcr, item->type, item->mtime, "%s", item->msg);
}
jcr->msg_queue->destroy();
+ jcr->msg_queue = NULL;
jcr->dequeuing = false;
+
+bail_out:
V(msg_queue_mutex);
}
return 0;
}
if (verbose) {
- Pmsg2(000, _("Updated Job termination record for JobId=%u TermStat=%c\n"), jr->JobId,
- jr->JobStatus);
+ Pmsg3(000, _("Updated Job termination record for JobId=%u Level=%s TermStat=%c\n"),
+ jr->JobId, job_level_to_str(mjcr->JobLevel), jr->JobStatus);
}
if (verbose > 1) {
const char *term_msg;
/* #define DEBUG_MUTEX 1 */
/* Check if header of tape block is zero before writing */
-#define DEBUG_BLOCK_ZEROING 1
+/* #define DEBUG_BLOCK_ZEROING 1 */
/* #define FULL_DEBUG 1 */ /* normally on for testing only */
Technical notes on version 1.39
- Kern Sibbald
General:
+02Aug06
+kes Change the name of the technical notes file from kes-1.39 to
+ technotes-1.39. Prefix my messages with 'kes '.
+kes Allow dequeue_messages() to be called twice. Should fix bug
+ # 649.
+kes Add Job type to bscan Job information output.
01Aug06
kes Update copyright date in program files, and for the most part
put it on a #define.