From 46b398b0bd7777a0bbfa8671d09893d08e58e629 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Mon, 13 Feb 2017 15:26:53 -0400 Subject: [PATCH] update labels --- workflow/engine/bin/tasks/cliWorkspaces.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/bin/tasks/cliWorkspaces.php b/workflow/engine/bin/tasks/cliWorkspaces.php index 218abab03..bd7890d23 100644 --- a/workflow/engine/bin/tasks/cliWorkspaces.php +++ b/workflow/engine/bin/tasks/cliWorkspaces.php @@ -954,11 +954,11 @@ function run_migrate_indexing_acv($args, $opts) { $args = $filter->xssFilterHard($args); $workspaces = get_workspaces_from_args($args); $start = microtime(true); - CLI::logging("> Migrating and populating indexing for APP_CACHE_VIEW...\n"); + CLI::logging("> Migrating and populating indexing for avoiding the use of table APP_CACHE_VIEW...\n"); foreach ($workspaces as $workspace) { print_r('Indexing for APP_CACHE_VIEW: ' . pakeColor::colorize($workspace->name, 'INFO') . "\n"); $workspace->migratePopulateIndexingACV($workspace->name); } $stop = microtime(true); - CLI::logging("<*> Migrating an populating indexing for APP_CACHE_VIEW process took " . ($stop - $start) . " seconds.\n"); + CLI::logging("<*> Migrating and populating indexing for avoiding the use of table APP_CACHE_VIEW process took " . ($stop - $start) . " seconds.\n"); }