You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Magento can be very slow, so it could be cool to add the timeout for the XML RPC client as a config variable. I modified the gem to use XMLRPC.Client.new3 like this
Magento can be very slow, so it could be cool to add the timeout for the XML RPC client as a config variable. I modified the gem to use XMLRPC.Client.new3 like this
@client = XMLRPC::Client.new3(
:host => config[:host],
:path => config[:path],
:port => config[:port],
:timeout => config[:timeout]
)
But new3 takes a hash so I'm sure there are more elegant ways of passing the config vars to it
nice wrapper! peace,
Nick
The text was updated successfully, but these errors were encountered: