lib/asynchronic/data_store/lazy_value.rb in asynchronic-1.6.3 vs lib/asynchronic/data_store/lazy_value.rb in asynchronic-2.0.0
- old
+ new
@@ -16,10 +16,10 @@
def inspect
"#<#{proxy_class} @data_store_class=#{@data_store_class} @data_store_connection_args=#{@data_store_connection_args} @key=#{@key}>"
end
def data_store
- @data_store_class.connect *@data_store_connection_args
+ @data_store_class.connect(*@data_store_connection_args)
end
def to_value
__getobj__
end
\ No newline at end of file