Skip to content

Unexpected Error due to Duplicate Content-Type Headers in cwltool #747

Open
@suecharo

Description

@suecharo

When I run the following command with the latest version of cwltool:

$ cwltool https://sandbox.zenodo.org/record/1016630/files/trimming_and_qc.cwl --help

I encounter the error below:

While fetching https://sandbox.zenodo.org/record/1016630/files/trimming_and_qc.cwl, got content-type of 'application/octet-stream, application/octet-stream'. Expected one of ['text/plain', 'application/json', 'text/vnd.yaml', 'text/yaml', 'text/x-yaml', 'application/x-yaml', 'application/octet-stream'].

I thought this might be related to the fix I provided in the past at:

common-workflow-language/cwltool#1622

However, upon closer inspection, I noticed that the content-type is duplicated: application/octet-stream, application/octet-stream.

I fetched the actual headers using curl, and observed:

$ curl -D - https://sandbox.zenodo.org/record/1016630/files/trimming_and_qc.cwl
...
Content-Type: application/octet-stream
...
Content-Type: application/octet-stream
...

It seems there are two Content-Type lines.

I suspect the code around:

resp = self.session.get(url, headers=headers)

might be related to this issue, but I'm not sure about the exact solution. Could you please look into this?

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