try to add extra types from rabbitmq spec - #494
Conversation
266d014 to
a348ed0
Compare
according to spec from rabbitmq the types should be as below: field-value = 'A' field-array 'D' decimal-value 'F' field-table 'I' long-int 'S' long-string 'T' timestamp 'V' ; no f 'b' short-short-int 'd' double 'f' float 'l' long-long-uint 's' short-string 't' boolean 'B' short-short-uint 'U' short-int 'u' short-uint 'i' long-uint 'L' long-long-int
|
Hey folks, I'm posting this on behalf of the core team. As you have noticed, this client hasn't seen a lot of activity recently. Because this client has a long tradition of "no breaking public API changes", certain We would like to thank @streadway Team RabbitMQ has adopted a "hard fork" of this client What do we mean by "hard fork" and what does it mean for you? The entire history of the project What does change is that this new fork will accept reasonable breaking API changes according If your PR hasn't been accepted or reviewed, you are welcome to re-submit it for Note that it is a high season for holidays in some parts of the world, so we may be slower Thank you for using RabbitMQ and contributing to this client. On behalf of the RabbitMQ core team, |
|
Please keep in mind this AMQP 0-9-1 Errata document when contributing changes in this area. This is very important as RabbitMQ, Qpid and AMQP 0-9-1 clients have adopted a slightly different set of prefixes for historical reasons. Those values have been in use for over a decade. |
in our project we mix different languages and recently we hit into issue:
Exception (501) Reason: "Exception (502) Reason: "invalid field or value inside of a frame""
The reason was a missing implementation for 'B'.
according to spec from rabbitmq the types should be as below:
field-value =
'A' field-array
'D' decimal-value
'F' field-table
'I' long-int
'S' long-string
'T' timestamp
'V' ; no f
'b' short-short-int
'd' double
'f' float
'l' long-long-uint
's' short-string
't' boolean
'B' short-short-uint
'U' short-int
'u' short-uint
'i' long-uint
'L' long-long-int