I have a GCP pubsub Push subscription. This subscription is pushing to a GCP Cloud run instance that receives the pubsub messages as HTTP requests. I am currently trying to add custom attributes to the publisher so that I can receive them in the Cloud run instance. It looks like attributes are not supported since they do not show up in the pubsub.Message
when I unmarshal the body of the request either in the HTTP headers.
That leads me to conclude that custom attributes are not supported when using pubsub push subscriptions. Is this true?