diff options
author | Kotresh HR <khiremat@redhat.com> | 2020-08-13 18:21:19 +0530 |
---|---|---|
committer | Kotresh HR <khiremat@redhat.com> | 2020-10-05 11:39:58 +0000 |
commit | b8e2553b2c70da9f75d81c6f18cea41323143004 (patch) | |
tree | 790ba89c7f27b972b191f09937b8ff89591a0e31 | |
parent | 5c9b955fdc55e3cd4ba4696dbd1eb7fcb19c7a12 (diff) |
geo-rep: Fix string comparisonrelease-8
Backport of:
>Fixes: #1438
>Change-Id: If9f1c2e89e504512bcf77608fb4a4fedb19f0399
>Signed-off-by: Kotresh HR <khiremat@redhat.com>
Fixes: #1438
Change-Id: If9f1c2e89e504512bcf77608fb4a4fedb19f0399
Signed-off-by: Shwetha K Acharya <sacharya@redhat.com>
(cherry picked from commit 005d2ac1d8cc57e0e36f7cf230ae09a4f860bd16)
-rw-r--r-- | geo-replication/syncdaemon/syncdutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/geo-replication/syncdaemon/syncdutils.py b/geo-replication/syncdaemon/syncdutils.py index 6362c13d5e3..7ad820e22f9 100644 --- a/geo-replication/syncdaemon/syncdutils.py +++ b/geo-replication/syncdaemon/syncdutils.py @@ -725,7 +725,7 @@ def get_slv_dir_path(slv_host, slv_volume, gfid): if not isinstance(realpath, int): basename = os.path.basename(realpath).rstrip('\x00') dirpath = os.path.dirname(realpath) - if dirpath is "/": + if dirpath == "/": pargfid = ROOT_GFID else: dirpath = dirpath.strip("/") |