From 28f6e02dae665e3ec5750f8bed8c6f32d1d1d17d Mon Sep 17 00:00:00 2001 From: Felipe Rodrigues Date: Sat, 26 Jun 2021 13:37:36 -0300 Subject: [PATCH] TrivialFix: Fix the filter name in config helper The config `use_scheduler_creating_share_from_snapshot` has the help message with wrong name of the scheduler filter that the user must enable with the option. The filter name is `CreateFromSnapshotFilter`, instead of `CreateShareFromSnapshot`. Change-Id: I3e6170f8def53aabd4bc5858fa297061e2873477 (cherry picked from commit 854b1dc958db4bd903e7b3c69c242295ad1518bd) (cherry picked from commit f1822cf40a736fcf9a7e9c849e38a97cee9d5a6a) --- manila/share/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manila/share/api.py b/manila/share/api.py index f6a11afe48..d9af216f50 100644 --- a/manila/share/api.py +++ b/manila/share/api.py @@ -48,7 +48,7 @@ share_api_opts = [ 'be performed on the same host. ' 'If set to True, then scheduler will be used.' 'When enabling this option make sure that filter ' - 'CreateShareFromSnapshot is enabled and to have hosts ' + 'CreateFromSnapshotFilter is enabled and to have hosts ' 'reporting replication_domain option.' ) ]