Hi I seem to have run into another issue which did...
# umh-support
s
Hi I seem to have run into another issue which didn't exist before. Today, I tried deploying a previously removed Network Device - the device was working fine before, but now I just can't get its protocol convertor to work. It keeps throwing the following error:
Copy code
[12:31:48 PM] - Failed to deploy protocol converter, attempting to revert. step 4 of 4 failed: Configuration file read error: /benthos.yaml: (2,1) invalid type !!seq, expected object
, please check the logs
Here are the YAML configs for reference: input:
Copy code
yaml
input:
    - http_client:
        headers: {}
        rate_limit: default
        timeout: 5s
        url: http://192.168.1.100:80/api/v1/measurements
        verb: GET

rate_limit_resources:
  - label: default
    local:
      count: 1
      interval: 1s
Copy code
yaml
pipeline:
  processors:
    - bloblang: |
        # these variables are autogenerated from your instance location
        let enterprise = "TESTING"
        let schema = "_historian"

        let payloadTagName = "testing"
        let value = this.items.map_each(items -> { item.name: item.value }).squash()
        let tagname = "all"
        let tagtype = "float"

        # the rest from here here on will be autogenerated, see also documentation