diff options
Diffstat (limited to 'lib/tasks/cache.rake')
-rw-r--r-- | lib/tasks/cache.rake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tasks/cache.rake b/lib/tasks/cache.rake index cb4d5abffbc..3b2cae9eef5 100644 --- a/lib/tasks/cache.rake +++ b/lib/tasks/cache.rake @@ -1,7 +1,7 @@ namespace :cache do namespace :clear do REDIS_CLEAR_BATCH_SIZE = 1000 # There seems to be no speedup when pushing beyond 1,000 - REDIS_SCAN_START_STOP = '0'.freeze # Magic value, see http://redis.io/commands/scan + REDIS_SCAN_START_STOP = "0".freeze # Magic value, see http://redis.io/commands/scan desc "GitLab | Clear redis cache" task redis: :environment do @@ -29,5 +29,5 @@ namespace :cache do task all: [:redis] end - task clear: 'cache:clear:redis' + task clear: "cache:clear:redis" end |