YunaiV 2023-10-17 23:17:26 +08:00
parent 144cece04d
commit e8da08a2ea

View File

@ -58,9 +58,9 @@ public class FileConfigServiceImpl implements FileConfigService {
FileConfigDO config = Objects.equals(CACHE_MASTER_ID, id) ? FileConfigDO config = Objects.equals(CACHE_MASTER_ID, id) ?
fileConfigMapper.selectByMaster() : fileConfigMapper.selectById(id); fileConfigMapper.selectByMaster() : fileConfigMapper.selectById(id);
if (config != null) { if (config != null) {
fileClientFactory.createOrUpdateFileClient(id, config.getStorage(), config.getConfig()); fileClientFactory.createOrUpdateFileClient(config.getId(), config.getStorage(), config.getConfig());
} }
return fileClientFactory.getFileClient(id); return fileClientFactory.getFileClient(null == config ? id : config.getId());
} }
}); });