summaryrefslogtreecommitdiffstats
path: root/qa/tasks/fs.py
diff options
context:
space:
mode:
Diffstat (limited to 'qa/tasks/fs.py')
-rw-r--r--qa/tasks/fs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/tasks/fs.py b/qa/tasks/fs.py
index 70caceaf22d..4f7a3e2060b 100644
--- a/qa/tasks/fs.py
+++ b/qa/tasks/fs.py
@@ -55,11 +55,11 @@ def clients_evicted(ctx, config):
mount = mounts.get(client)
if mount is not None:
if evicted:
- log.info("confirming client {} is blacklisted".format(client))
- assert mount.is_blacklisted()
+ log.info("confirming client {} is blocklisted".format(client))
+ assert mount.is_blocklisted()
elif client in no_session:
log.info("client {} should not be evicted but has no session with an MDS".format(client))
- mount.is_blacklisted() # for debugging
+ mount.is_blocklisted() # for debugging
should_assert = True
if should_assert:
raise RuntimeError("some clients which should not be evicted have no session with an MDS?")