我正在使用pandevice python模块更新palo alto防火墙。脚本因少数设备的回溯错误(内容无效请求)而失败。下面是错误。
注意:我尝试对内容类进行注释,但是没有运气。
ABC() {
getMethod().subscribe((response: any) => {
if (response.data && response.status === "success") {
this.data = response.data;
} else {
throw new Error();
}
});
}