In case of incremental backup, the characters s q l in the database name are deleted

My cyber panel Current Version : 2.3

When processing incremental backup,
A problem occurred in which some characters in the database name were deleted.
This leads to a database not found problem upon restore.

For example, in the last string of the database name
If the “s, q, l” character is present, the corresponding character is automatically deleted.

< source code to be modified >

/usr/local/CyberCP/IncBackups/IncBackupsControl.py

rstrip('.sql')

< Change all code as below>
rsplit(’.sql’,1)[0]

1 Like

@usmannasir