We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25e83ec + 99ff196 commit 39ec2edCopy full SHA for 39ec2ed
1 file changed
lib/softlayer/Service.rb
@@ -14,9 +14,11 @@ def with_warnings(flag)
14
$VERBOSE = old_verbose
15
end
16
17
-# enable parsing of "nil" values in structures returned from the API
18
with_warnings(nil) {
+ # enable parsing of "nil" values in structures returned from the API
19
XMLRPC::Config.const_set('ENABLE_NIL_PARSER', true)
20
+ # enable serialization of "nil" values in structures sent to the API
21
+ XMLRPC::Config.const_set('ENABLE_NIL_CREATE', true)
22
}
23
24
# The XML-RPC spec calls for the "faultCode" in faults to be an integer
0 commit comments