I'm following the example at https://knative.dev/docs/eventing/broker-trigger/
In place of my-service I've deployed the event-display service. But it doesn't get that far. When I fire the CloudEvent it hits the broker which returns a 202. But it never hits the service and in the default-broker-filter logs I see this:
{"level":"warn","ts":"2019-06-12T15:25:39.969Z","logger":"provisioner","caller":"broker/receiver.go:133","msg":"No TTL seen, dropping","triggerRef":"default/event-display-trigger","event":"Validation: valid\nContext Attributes,\n cloudEventsVersion: 0.1\n eventType: dev.knative.foo.bar\n source: dev.knative.example\n eventID: 45a8b444-3213-4758-be3f-540bf93f85ff\n eventTime: 2018-04-05T03:56:24Z\n contentType: application/json\nExtensions,\n Knativebrokerttl: 255\nData,\n {\n "much": "wow"\n }\n"}
This 'No TTL seen' seems to be a failure condition but I'm struggling to see what could be wrong with the request as I've copied it directly from the example.
I'm following the example at https://knative.dev/docs/eventing/broker-trigger/
In place of my-service I've deployed the event-display service. But it doesn't get that far. When I fire the CloudEvent it hits the broker which returns a 202. But it never hits the service and in the default-broker-filter logs I see this:
{"level":"warn","ts":"2019-06-12T15:25:39.969Z","logger":"provisioner","caller":"broker/receiver.go:133","msg":"No TTL seen, dropping","triggerRef":"default/event-display-trigger","event":"Validation: valid\nContext Attributes,\n cloudEventsVersion: 0.1\n eventType: dev.knative.foo.bar\n source: dev.knative.example\n eventID: 45a8b444-3213-4758-be3f-540bf93f85ff\n eventTime: 2018-04-05T03:56:24Z\n contentType: application/json\nExtensions,\n Knativebrokerttl: 255\nData,\n {\n "much": "wow"\n }\n"}
This 'No TTL seen' seems to be a failure condition but I'm struggling to see what could be wrong with the request as I've copied it directly from the example.