Skip to content

Multiple Cookie headers incorrectly concatenated with comma instead of semicolon #439

Description

@andyquinterom

When multiple Cookie headers are present in an HTTP request, they are concatenated with a comma (,) separator instead of the correct semicolon-space ("; ") separator required by RFC 6265.

Example:

Cookie: session=abc123
Cookie: user=john

Current behavior:

HTTP_COOKIE = "session=abc123,user=john"

Expected behavior:

HTTP_COOKIE = "session=abc123; user=john"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions