Skip to content

Commit

Permalink
Adjust myrocks_hotbackup to work with MariaDB.
Browse files Browse the repository at this point in the history
  • Loading branch information
spetrunia committed Jan 25, 2018
1 parent e402d77 commit 9a23b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/rocksdb/myrocks_hotbackup
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9a23b22

Please sign in to comment.