Commit 9a23b223 authored by Sergei Petrunia's avatar Sergei Petrunia

Adjust myrocks_hotbackup to work with MariaDB.

parent e402d779
......@@ -124,7 +124,7 @@ class MiscFilesProcessor():
dirs = [ d for d in os.listdir(self.datadir) \
if not os.path.isfile(os.path.join(self.datadir,d))]
for db in dirs:
if not db.startswith('.') and not self._is_socket(db):
if not db.startswith('.') and not self._is_socket(db) and not db == "#rocksdb":
dbs.append(db)
return dbs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment