From c7d5fbb2319b5e8f44faf7ad78dcb4a4a914151c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ji=C5=99=C3=AD=20Filipovi=C4=8D?= Date: Fri, 19 Mar 2010 09:50:18 +0000 Subject: [PATCH] more values from CREAM mapped --- org.glite.lb.state-machine/src/process_event_cream.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/org.glite.lb.state-machine/src/process_event_cream.c b/org.glite.lb.state-machine/src/process_event_cream.c index 6690f4c..cfac36f 100644 --- a/org.glite.lb.state-machine/src/process_event_cream.c +++ b/org.glite.lb.state-machine/src/process_event_cream.c @@ -83,6 +83,8 @@ int processEvent_Cream(intJobStat *js, edg_wll_Event *e, int ev_seq, int strict, rep_cond(js->pub.cream_owner, js->pub.owner); rep_cond(js->pub.cream_jdl, e->regJob.jdl); rep_cond(js->pub.cream_endpoint, e->regJob.ns); + rep_cond(js->pub.destination, e->regJob.ns); + rep_cond(js->pub.network_server, e->regJob.ns); } break; case EDG_WLL_EVENT_CREAMSTART: @@ -202,10 +204,12 @@ int processEvent_Cream(intJobStat *js, edg_wll_Event *e, int ev_seq, int strict, case EDG_WLL_STAT_DONE_OK: js->pub.state = EDG_WLL_JOB_DONE; js->pub.done_code = EDG_WLL_STAT_OK; + js->pub.cream_done_code = EDG_WLL_STAT_OK; break; case EDG_WLL_STAT_DONE_FAILED: js->pub.state = EDG_WLL_JOB_DONE; js->pub.done_code = EDG_WLL_STAT_FAILED; + js->pub.cream_done_code = EDG_WLL_STAT_FAILED; break; case EDG_WLL_STAT_ABORTED: js->pub.state = EDG_WLL_JOB_ABORTED; break; } -- 1.8.2.3