diff options
author | randomdan <randomdan@localhost> | 2011-03-30 12:37:01 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-03-30 12:37:01 +0000 |
commit | 69fb485a52578dcf132c45859f742205bf430c79 (patch) | |
tree | 73573493a6f9192f1fd9928700a5ec449f09256a /project2/cgi | |
parent | Add native conversion of VariableTypes to int32_t (diff) | |
download | project2-69fb485a52578dcf132c45859f742205bf430c79.tar.bz2 project2-69fb485a52578dcf132c45859f742205bf430c79.tar.xz project2-69fb485a52578dcf132c45859f742205bf430c79.zip |
Pass XML node to XML storer
Add storer to split tasks by their onerror value
Diffstat (limited to 'project2/cgi')
-rw-r--r-- | project2/cgi/cgiStageRequest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/cgi/cgiStageRequest.cpp b/project2/cgi/cgiStageRequest.cpp index 6f877f7..774b67d 100644 --- a/project2/cgi/cgiStageRequest.cpp +++ b/project2/cgi/cgiStageRequest.cpp @@ -16,7 +16,7 @@ CgiApplicationEngine::RequestStage::RequestStage(const CgiEnvironment * e, const LoaderBase loader(ApplicationEngine::getCurrent()->env()->getXmlNamespace(), true); loader.supportedStorers.insert(Storer::into(¶meterChecks)); loader.supportedStorers.insert(Storer::into(&rowSets)); - loader.supportedStorers.insert(Storer::into(&tasks)); + loader.supportedStorers.insert(new NOEErrorStorer(&normTasks, &errorTasks)); loader.collectAll(this, requestRoot, true); } |