now the XML-RPC client closes the connection immediately

This commit is contained in:
maroy 2004-12-14 13:02:32 +00:00
parent cb38affb2a
commit ae093e2cdc

View file

@ -22,7 +22,7 @@
Author : $Author: maroy $
Version : $Revision: 1.2 $
Version : $Revision: 1.3 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/schedulerClient/src/SchedulerDaemonXmlRpcClient.cxx,v $
------------------------------------------------------------------------------*/
@ -148,6 +148,8 @@ SchedulerDaemonXmlRpcClient :: getVersion(void) throw ()
result.reset(new std::string(xmlRpcResult["version"]));
}
xmlRpcClient.close();
return result;
}
@ -184,6 +186,8 @@ SchedulerDaemonXmlRpcClient :: getSchedulerTime(
}
xmlRpcClient.close();
return result;
}