添加注册失败时回复403避免陷入401循环

This commit is contained in:
64850858
2021-06-08 14:43:03 +08:00
parent 57b562d622
commit abd569d79a
6 changed files with 124 additions and 62 deletions

View File

@@ -4,7 +4,6 @@ import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.genersoft.iot.vmp.conf.MediaConfig;
import com.genersoft.iot.vmp.conf.SipConfig;
import com.genersoft.iot.vmp.media.zlm.dto.StreamProxyItem;
import com.genersoft.iot.vmp.storager.IVideoManagerStorager;
import com.genersoft.iot.vmp.service.IStreamProxyService;

View File

@@ -41,7 +41,7 @@ public class ZLMServerConfig {
private String streamIp;
private long updateTime;
private String updateTime;
@JSONField(name = "hls.fileBufSize")
private String hlsFileBufSize;
@@ -732,11 +732,11 @@ public class ZLMServerConfig {
this.shellPhell = shellPhell;
}
public long getUpdateTime() {
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(long updateTime) {
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}