Sha256: 101ebbc21d5859642f3fbee06e484da74c378105602511b1e5989592d43ec6fc
Contents?: true
Size: 428 Bytes
Versions: 114
Compression:
Stored size: 428 Bytes
Contents
#This allows us to accept "JSON" that is malformed # and is empty string ("") that subscription-manager-1.1.23-1.el6.x86_64 # will from time to time, send to katello module MultiJson class<< self alias_method :old_aliased_load, :load def load(string, options = {}) string = string.read if string.respond_to?(:read) string = "{}" if string == '""' old_aliased_load(string, options) end end end
Version data entries
114 entries across 114 versions & 1 rubygems