mirror of
https://github.com/ceph/ceph
synced 2025-02-24 11:37:37 +00:00
src/tools/cephfs-top: fix flake8 line too long error
Fixes: https://tracker.ceph.com/issues/50005 Signed-off-by: Varsha Rao <varao@redhat.com>
This commit is contained in:
parent
e038fe24ee
commit
51cf6c3d14
@ -140,7 +140,8 @@ class FSTop(object):
|
||||
raise FSTopException('perf stats version mismatch!')
|
||||
missing = [m for m in stats_json["global_counters"] if m.upper() not in MGR_STATS_COUNTERS]
|
||||
if missing:
|
||||
raise FSTopException(f'Cannot handle unknown metrics from \'ceph fs perf stats\': {missing}')
|
||||
raise FSTopException('Cannot handle unknown metrics from \'ceph fs perf stats\': '
|
||||
f'{missing}')
|
||||
|
||||
def setup_curses(self):
|
||||
self.stdscr = curses.initscr()
|
||||
|
Loading…
Reference in New Issue
Block a user