We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This has only happened when the series creation fails due to using a date as the series name.
Should probably be 422?
recreate with this hurl code:
command:
hurl release404bug.hurl --variable scheme=http --variable host_name=localhost:3000 --variable auth_token="string" --variable series="$date(.+)"
hurl:
PUT {{scheme}}://{{host_name}}/data/{{series}} Accept: application/json Content-Type: application/json Authorization: {{auth_token}} { "dcterms:title": "Test Dataset", "dcterms:description": "A very simple test" }
HTTP 201
PUT {{scheme}}://{{host_name}}/data/{{series}}/release/release-1 Accept: application/json Content-Type: application/json Authorization: {{auth_token}} { "dcterms:title": "Test Release", "dcterms:description": "A very simple Release" }
HTTP 422
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This has only happened when the series creation fails due to using a date as the series name.
Should probably be 422?
recreate with this hurl code:
command:
hurl release404bug.hurl --variable scheme=http --variable host_name=localhost:3000 --variable auth_token="string" --variable series="$date(.+)"
hurl:
PUT {{scheme}}://{{host_name}}/data/{{series}}
Accept: application/json
Content-Type: application/json
Authorization: {{auth_token}}
{
"dcterms:title": "Test Dataset",
"dcterms:description": "A very simple test"
}
HTTP 201
PUT {{scheme}}://{{host_name}}/data/{{series}}/release/release-1
Accept: application/json
Content-Type: application/json
Authorization: {{auth_token}}
{
"dcterms:title": "Test Release",
"dcterms:description": "A very simple Release"
}
HTTP 422
The text was updated successfully, but these errors were encountered: