1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-22 22:03:39 +03:00

Revert "M #-: Fix 'Unknown type: i8' when using Java OCA (#186)"

This reverts commit 32606c23c829b893923268848ec533b41e5d34f2.
This commit is contained in:
Ruben S. Montero 2020-10-20 10:59:53 +02:00
parent 6311392a0b
commit ded79ab856
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87
3 changed files with 0 additions and 8 deletions

View File

@ -83,11 +83,6 @@ private:
{
return registered_methods.find(call) != registered_methods.end();
}
void setDialect(xmlrpc_dialect dialect)
{
registry.setDialect(dialect);
}
};
/**

View File

@ -205,7 +205,6 @@ public class Client{
}
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
config.setEnabledForExtensions(true);
try
{

View File

@ -616,8 +616,6 @@ void RequestManager::register_xml_methods()
RequestManagerRegistry.addMethod("one.hostpool.info", hostpool_info);
RequestManagerRegistry.addMethod("one.hostpool.monitoring", host_pool_monitoring);
RequestManagerRegistry.setDialect(xmlrpc_dialect_apache);
/* Group related methods */
xmlrpc_c::method * group_allocate_pt;