have DS clear config file is new config is passed

This commit is contained in:
Stephen Birarda 2013-09-30 14:03:02 -07:00
parent b3bd159d09
commit e2d68f5538

View file

@ -346,7 +346,13 @@ int DomainServer::run() {
nodeList->startSilentNodeRemovalThread();
if (!_staticAssignmentFile.exists()) {
if (!_staticAssignmentFile.exists() || _voxelServerConfig) {
if (_voxelServerConfig) {
// we have a new VS config, clear the existing file to start fresh
_staticAssignmentFile.remove();
}ga
prepopulateStaticAssignmentFile();
}