Rename persistable_store instead of persist_store

This commit is contained in:
Shinya Maeda 2018-07-03 14:33:11 +09:00
parent 86251e74c5
commit b223f7b7a0
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ module Ci
@all_stores ||= self.data_stores.keys
end
def persist_store
def persistable_store
# get first available store from the back of the list
all_stores.reverse.find { |store| get_store_class(store).available? }
end
@ -99,7 +99,7 @@ module Ci
def persist_data!
in_lock(*lock_params) do # Write opetation is atomic
unsafe_persist_to!(self.class.persist_store)
unsafe_persist_to!(self.class.persistable_store)
end
end