去除数据库自动更新,自动更新会导致wvp在arm架构服务上无法启动

This commit is contained in:
648540858
2023-02-06 10:46:23 +08:00
parent 166272ad11
commit aa3cec0dfc
4 changed files with 6 additions and 83 deletions

View File

@@ -46,7 +46,6 @@ public class UserSetting {
private Boolean syncChannelOnDeviceOnline = Boolean.FALSE;
private Boolean sipLog = Boolean.FALSE;
private Boolean syncDb = Boolean.TRUE;
private String serverId = "000000";
@@ -217,12 +216,4 @@ public class UserSetting {
public void setSipLog(Boolean sipLog) {
this.sipLog = sipLog;
}
public Boolean getSyncDb() {
return syncDb;
}
public void setSyncDb(Boolean syncDb) {
this.syncDb = syncDb;
}
}