From c66f81daac0a0a383835a0ce19cb2fc67e296eaa Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Sat, 27 Jul 2019 07:02:39 +0200 Subject: [PATCH] use correct class in import command --- lib/tasks/client.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/client.rake b/lib/tasks/client.rake index f867725f9..c88e534f9 100644 --- a/lib/tasks/client.rake +++ b/lib/tasks/client.rake @@ -46,7 +46,7 @@ namespace :client do desc 'Import all clients' task :import => :environment do - Provider.import(index: Client.inactive_index) + Client.import(index: Client.inactive_index) end desc 'Index DOIs by client'