Skip to:
Unexpected quotation marks are introduced when using logicalStartTime inside a URL in the HTTP plugin causing an "Illegal character"-error:
logicalStartTime
Using: .../cases?updatedAtFrom=${logicalStartTime("yyyy-MM-dd")}T00:00:00+0200...
.../cases?updatedAtFrom=${logicalStartTime("yyyy-MM-dd")}T00:00:00+0200...
Expected behavior: .../cases?updatedAtFrom=2022-03-07T00:00:00+0200...
.../cases?updatedAtFrom=2022-03-07T00:00:00+0200...
Actual behavior: .../cases?updatedAtFrom=“2022-03-07"T00:00:00+0200...
.../cases?updatedAtFrom=
2022-03-07
T00:00:00+0200...
If logicalStartTime used for creating a path produces an expected behavior -> no extra quotations marks.
Unexpected quotation marks are introduced when using
logicalStartTime
inside a URL in the HTTP plugin causing an "Illegal character"-error:Using:
.../cases?updatedAtFrom=${logicalStartTime("yyyy-MM-dd")}T00:00:00+0200...
Expected behavior:
.../cases?updatedAtFrom=2022-03-07T00:00:00+0200...
Actual behavior:
.../cases?updatedAtFrom=
“2022-03-07
"T00:00:00+0200...
If
logicalStartTime
used for creating a path produces an expected behavior -> no extra quotations marks.