From: Zdeněk Šustr Date: Fri, 20 May 2011 12:21:23 +0000 (+0000) Subject: Support zombification of single SB transfer jobs X-Git-Tag: glite-lb-client_R_4_1_10_1~17 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=af3280a2b0a01f07abd571e8326e56d51923cae6;p=jra1mw.git Support zombification of single SB transfer jobs --- diff --git a/org.glite.lb.server/src/srv_purge.c b/org.glite.lb.server/src/srv_purge.c index ee917e5..88eb675 100644 --- a/org.glite.lb.server/src/srv_purge.c +++ b/org.glite.lb.server/src/srv_purge.c @@ -562,6 +562,7 @@ static int get_jobid_suffix(edg_wll_Context ctx, glite_jobid_const_t job, enum e case EDG_WLL_STAT__PARTITIONABLE_UNUSED: case EDG_WLL_STAT__PARTITIONED_UNUSED: case EDG_WLL_STAT_COLLECTION: + case EDG_WLL_STAT_FILE_TRANSFER: // glite jobs, no suffix *suffix = strdup(""); *unique = strdup(dbjob); @@ -609,6 +610,7 @@ static int get_jobid_prefix(edg_wll_Context ctx, glite_jobid_const_t job, enum e case EDG_WLL_STAT__PARTITIONABLE_UNUSED: case EDG_WLL_STAT__PARTITIONED_UNUSED: case EDG_WLL_STAT_COLLECTION: + case EDG_WLL_STAT_FILE_TRANSFER: // glite job prefix ser = glite_jobid_getServer(job); asprintf(prefix,"%s/",ser);