From 67a7236cf7f03521f961ed4a625163a629519198 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Sun, 3 Feb 2019 22:02:26 +0100 Subject: [PATCH] avoid slow mysql queries. #195 --- config/initializers/_version.rb | 2 +- lib/tasks/client.rake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/initializers/_version.rb b/config/initializers/_version.rb index f5cbf8a02..36d9c12d6 100644 --- a/config/initializers/_version.rb +++ b/config/initializers/_version.rb @@ -1,5 +1,5 @@ module Lupo class Application - VERSION = "2.3.18" + VERSION = "2.3.19" end end \ No newline at end of file diff --git a/lib/tasks/client.rake b/lib/tasks/client.rake index 170132d0a..90853d858 100644 --- a/lib/tasks/client.rake +++ b/lib/tasks/client.rake @@ -28,7 +28,7 @@ namespace :client do end # index DOIs for client - puts "#{client.dois.length} DOIs will be indexed." + # puts "#{client.dois.length} DOIs will be indexed." client.index_all_dois end