From 3db63ceacbd5353d2af704538bde69259bd56303 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Posp=C3=AD=C5=A1il?= Date: Thu, 14 Jun 2007 18:48:16 +0000 Subject: [PATCH] fill also condor_shadow_pid and condor_preempting --- org.glite.lb.server/src/process_event_condor.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/org.glite.lb.server/src/process_event_condor.c b/org.glite.lb.server/src/process_event_condor.c index e884205..299f120 100644 --- a/org.glite.lb.server/src/process_event_condor.c +++ b/org.glite.lb.server/src/process_event_condor.c @@ -66,6 +66,8 @@ int processEvent_Condor(intJobStat *js, edg_wll_Event *e, int ev_seq, int strict } if (USABLE_DATA(res)) { rep_cond(js->pub.condor_dest_host,e->CondorMatch.dest_host); + rep_cond(js->pub.condor_owner,e->CondorMatch.owner); + rep_cond(js->pub.condor_preempting,e->CondorMatch.preempting); } break; case EDG_WLL_EVENT_CONDORREJECT: @@ -107,6 +109,7 @@ int processEvent_Condor(intJobStat *js, edg_wll_Event *e, int ev_seq, int strict if (USABLE_DATA(res)) { switch (get_condor_event_source(e->any.seqcode)) { case EDG_WLL_CONDOR_EVENT_SOURCE_SHADOW: + js->pub.condor_shadow_pid = e->CondorShadowExited.shadow_pid; js->pub.condor_shadow_exit_status = e->CondorShadowExited.shadow_exit_status; break; default: -- 1.8.2.3