我正在尝试使用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

最佳答案

很抱歉,Operate目前仅支持BPMN XML部署。 Zeebe中的YAML支持仅是基本的,并不打算用于实际的用例。使用yaml为复杂的流程建模真的很困难,而使用BPMN可以轻松实现。我们强烈建议您切换到Zeebe Modeler来创建工作流程模型。

如果您想进一步讨论这个问题,我们很高兴以community channels之一欢迎您。

关于go - yaml工作流缺少开始标记,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60373164/

10-12 14:41