Hi there,
RFC 2616 defines a comma as the separator for multiple values in a header field. Alternatively, it is possible, to use a certain header multiple times containing a single value each.
Let headers be a MultiMap
The second approach works well, headers.getAll(Name) provides a list wit the single values.
If one uses comma-seperated values, headers.getAll(name) returns a list of one element containing the comma-separated values, tests using contains-operation fail.
Does Vertx do not support comma-separated values.
Vertx 5.1.13, MacOS Sequoia