X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0f644e242ef37c911ad3dc25aca8135c339de349..01ca27ba0a1ef84c53e223004249505435a788b6:/services/api/lib/serializers.rb diff --git a/services/api/lib/serializers.rb b/services/api/lib/serializers.rb index ec6fe19972..c25b9060b4 100644 --- a/services/api/lib/serializers.rb +++ b/services/api/lib/serializers.rb @@ -16,7 +16,7 @@ class Serializer end def self.legacy_load(s) - val = Psych.safe_load(s) + val = Psych.safe_load(s, permitted_classes: [Time]) if val.is_a? String # If apiserver was downgraded to a YAML-only version after # storing JSON in the database, the old code would have loaded @@ -32,7 +32,10 @@ class Serializer end def self.load(s) - if s.nil? + if s.is_a?(object_class) + # Rails already deserialized for us + s + elsif s.nil? object_class.new() elsif s[0] == first_json_char SafeJSON.load(s)