diff --git a/app/models/ci/build_trace_chunk.rb b/app/models/ci/build_trace_chunk.rb index 4362570b5ee..e7c56b94751 100644 --- a/app/models/ci/build_trace_chunk.rb +++ b/app/models/ci/build_trace_chunk.rb @@ -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