mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-05 02:12:48 +08:00
Disable cleanup if mode is read only
Former-commit-id: 8bb50a5c070e1f8bb7c73191481a476f08ee7281
This commit is contained in:
parent
e7ad142a08
commit
24e533a3a3
@ -25,6 +25,7 @@ Please mark all change in change log and use the ticket from JIRA.
|
||||
- MS-90 - Fix arch match incorrect on ARM
|
||||
- MS-99 - Fix compilation bug
|
||||
- MS-110 - Avoid huge file size
|
||||
- MS-148 - Disable cleanup if mode is read only
|
||||
|
||||
## Improvement
|
||||
- MS-82 - Update server startup welcome message
|
||||
|
||||
@ -162,7 +162,9 @@ namespace meta {
|
||||
|
||||
try {
|
||||
|
||||
CleanUp();
|
||||
if (mode_ != Options::MODE::READ_ONLY) {
|
||||
CleanUp();
|
||||
}
|
||||
|
||||
{
|
||||
ScopedConnection connectionPtr(*mysql_connection_pool_, safe_grab);
|
||||
@ -457,7 +459,7 @@ namespace meta {
|
||||
} //Scoped Connection
|
||||
|
||||
|
||||
if (mode_ != Options::MODE::SINGLE) {
|
||||
if (mode_ == Options::MODE::CLUSTER) {
|
||||
DeleteTableFiles(table_id);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user