You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure why I got this, but I have this line which cannot be parsed:
ibuf aio reads:, log i/o's:, sync i/o's:
There are no digits.
Added this for now:
@@ -436,6 +436,8 @@
for line in status.split("\n"):
line = line.strip()
+ if line.find("ibuf aio reads:,") != -1:
+ line = re.sub(r':', ': 0', line)
row = re.split(r' +', re.sub(r'[,;] ', ' ', line))
if line == '': continue
The text was updated successfully, but these errors were encountered:
Not sure why I got this, but I have this line which cannot be parsed:
There are no digits.
Added this for now:
The text was updated successfully, but these errors were encountered: