1
我們有一個通知,它將使用應用程序端點將數據發佈到應用程序。Bosun:使用post url保存信息並獲取相同信息並在模板中使用
notification ABC{
post = savedetailsurl
body = {{.|json}}
useBody = true
}
因此,終點將保存mysql數據庫中的所有細節。
現在在我們的模板中,我們調用另一個終點來獲取我們在通知中使用webhook保存的細節。
template ABC {
use the " getDetailsUrl" and use the details in forming the email
}
現在的問題是競態條件。有時細節不會保存在後端(mysql)中,並調用getDetailsUrl。所以我們得到空的結果。
是否有辦法解決競爭條件。