From 854b1dc958db4bd903e7b3c69c242295ad1518bd Mon Sep 17 00:00:00 2001
From: Felipe Rodrigues <felipefuty01@gmail.com>
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
---
 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 1a6e6102d3..75959a0225 100644
--- a/manila/share/api.py
+++ b/manila/share/api.py
@@ -52,7 +52,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.'
                 )
 ]