|
@@ -171,7 +171,13 @@ namespace TEAMModelOS.Controllers
|
|
|
return BadRequest(new { notinnew });
|
|
|
}
|
|
|
}
|
|
|
- _ = _httpTrigger.RequestHttpTrigger(new { old_new = old_new, school = $"{school}" }, _option.Location, "knowledge-change");
|
|
|
+ try
|
|
|
+ {
|
|
|
+ _ = _httpTrigger.RequestHttpTrigger(new { old_new = old_new, school = $"{school}" }, _option.Location, "knowledge-change");
|
|
|
+ }
|
|
|
+ catch (Exception ex) {
|
|
|
+ //暂不处理
|
|
|
+ }
|
|
|
}
|
|
|
return Ok(new { knowledge });
|
|
|
}
|