]> git.sur5r.net Git - bacula/bacula/commitdiff
Don't try to copy empty jobs (e.g. with jobbytes == 0)
authorMarco van Wieringen <mvw@planets.elm.net>
Wed, 25 Feb 2009 18:19:24 +0000 (18:19 +0000)
committerMarco van Wieringen <mvw@planets.elm.net>
Wed, 25 Feb 2009 18:19:24 +0000 (18:19 +0000)
which gives Unable to get Job Volume Parameters errors.
Which leads to copying the same job over and over again.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8493 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/dird/migrate.c
bacula/technotes-2.5

index 9bdfab58f96e46f47186643d1581db80d4ce898d..f4beca32261dca0b1d0e1496d2803002cd17708e 100644 (file)
@@ -588,6 +588,7 @@ const char *sql_jobids_of_pool_uncopied_jobs =
    "SELECT DISTINCT Job.JobId,Job.StartTime FROM Job,Pool"
    " WHERE Pool.Name = '%s' AND Pool.PoolId = Job.PoolId"
    " AND Job.Type = 'B' AND Job.JobStatus = 'T'"
+   " AND Job.jobBytes > 0"
    " AND Job.JobId NOT IN"
    " (SELECT PriorJobId FROM Job WHERE"
    " Type IN ('B','C') AND Job.JobStatus = 'T'"
index 2656490c3e8926b1aeecce6b8b125bd1183de97e..0f7cf5e127a5647a1714067f6e6b81a09e81cbcf 100644 (file)
@@ -25,6 +25,10 @@ filepattern (restore with regex in bsr)
 mixed priorities
 
 General:
+25Feb09
+mvw  Don't try to copy empty jobs (e.g. with jobbytes == 0)
+     which gives Unable to get Job Volume Parameters errors.
+     Which leads to copying the same job over and over again.
 21Feb09
 kes  Ensure that src/qt-console/.libs is cleaned properly
 20Feb09