You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When trying to setup channels using the Knative bookstore example, received the error as per title when sending messages into the channel.
Expected behavior
Expected to see the sequence executed and output being passed back via trigger
apiVersion: flows.knative.dev/v1kind: Sequencemetadata:
name: sequencespec:
channelTemplate: # Under the hood, the Sequence will create a Channel for each step in the SequenceapiVersion: messaging.knative.dev/v1alpha1kind: NatsJetStreamChannelsteps:
- ref: # This is the first step of the Sequence, it will send the event to the bad-word-filter serviceapiVersion: serving.knative.dev/v1kind: Servicename: bad-word-filter
- ref: # This is the second step of the Sequence, it will send the event to the sentiment-analysis-app serviceapiVersion: serving.knative.dev/v1kind: Servicename: sentiment-analysis-appreply: # This is the last step of the Sequence, it will send the event back to the Broker as replyref:
kind: BrokerapiVersion: eventing.knative.dev/v1name: knative-rabbitmq-broker
Initially, kubectl get natsjetstreamchannels showed that all channels were ready
After sending a message, error reported
Knative release version
1.16.0
Observations
After sending the CE, the message is sent to the first stream KN_DEFAULT__SEQUENCE_KN_SEQUENCE_0. We can observe this by using the nats cli.
nats consumer next --server nats://<nats-server-ip>:4222 KN_DEFAULT__SEQUENCE_KN_SEQUENCE_0 <consumer-name> --ack
Conclusion
The message is being sent to the NATS stream and stays there, but when the Jetstream Dispatcher attempts to consume the message it seems to throw the error reported.
The text was updated successfully, but these errors were encountered:
Describe the bug
When trying to setup channels using the Knative bookstore example, received the error as per title when sending messages into the channel.
Expected behavior
Expected to see the sequence executed and output being passed back via trigger
To Reproduce
kubectl get natsjetstreamchannels
showed that all channels were readyKnative release version
1.16.0
Observations
Conclusion
The message is being sent to the NATS stream and stays there, but when the Jetstream Dispatcher attempts to consume the message it seems to throw the error reported.
The text was updated successfully, but these errors were encountered: