From 63efb3082a609262be280e11f588036fb0016515 Mon Sep 17 00:00:00 2001 From: "Nathanael d. Noblet" Date: Fri, 8 Dec 2017 11:17:09 -0500 Subject: [PATCH] Fix documentation about pre_cache_warmup tasks The documentation states that the hook occurs after cache warmup when infact it is prior to it. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4bc49a012..b51a21a83 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ These are the possible role variables - you only need to have a small set define # optional parameters, covered by defaults symfony_project_post_folder_creation_tasks: task hook after folder creation - symfony_project_pre_cache_warmup_tasks: after cache warmup + symfony_project_pre_cache_warmup_tasks: before cache warmup symfony_project_pre_live_switch_tasks: before live symlink is switched symfony_project_post_live_switch_tasks: after live symlink is switched @@ -153,7 +153,7 @@ possible hooks: ```yaml --- symfony_project_post_folder_creation_tasks: task hook after folder creation - symfony_project_pre_cache_warmup_tasks: after cache warmup + symfony_project_pre_cache_warmup_tasks: before cache warmup symfony_project_pre_live_switch_tasks: before live symlink is switched symfony_project_post_live_switch_tasks: after live symlink is switched ```