我正在尝试使用 Go 客户端以编程方式管理工作流程。我正在使用 yaml,这是我的工作流程:
name: order-process
tasks:
- id: collect-money
type: payment-service
- id: fetch-items
type: inventory-service
switch:
- case: totalPrice > 100
goto: ship-parcel-with-insurance
- default: ship-parcel
- id: ship-parcel-with-insurance
type: shipment-service-premium
end: true
- id: ship-parcel
type: shipment-service
当我部署它时,我无法在 camunda 操作中将其可视化,页面卡在加载中,并且在控制台中出现此错误:
Error: unparsable content detected
line: 0
column: 0
nested error: missing start tag
守候你守候我
相关分类