diff --git a/lib/couchrest/model/property.rb b/lib/couchrest/model/property.rb index abefaab..d1aec7b 100644 --- a/lib/couchrest/model/property.rb +++ b/lib/couchrest/model/property.rb @@ -58,7 +58,8 @@ module CouchRest::Model if default.class == Proc default.call else - Marshal.load(Marshal.dump(default)) + # Marshal.load(Marshal.dump(default)) # Removed as there are no failing tests and caused mutex errors + default end end