Skip to content

Commit

Permalink
Merge pull request #1318 from FIWARE/bug/issue1317
Browse files Browse the repository at this point in the history
Fixed issue #1317
  • Loading branch information
kzangeli authored Feb 2, 2023
2 parents b1addde + 1d7791f commit 572bdf8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,4 @@
* Issue #280 Implemented forwarding for entity deletion, for DELETE /entities/{entityId}
* Issue #280 Implemented forwarding for Batch entity deletion, for POST /entityOperations/delete
* Issue #1312 Better error handling for a specific use case about RHS being 'null'
* Issue #1317 Removed an unfortunate error message about "not a valid timestamp"
3 changes: 0 additions & 3 deletions src/lib/common/globals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -540,10 +540,7 @@ double parse8601Time(char* ss)
(sscanf(ss, "%4d-%2d-%2d%s", &y, &M, &d, tz) == 3)); // Trying just date (in this case tz is not allowed)

if (!validDate)
{
LM_E(("Not a valid date: '%s'", ss));
return -1;
}

int offset = timezoneOffset(tz);
if (offset == -1)
Expand Down

0 comments on commit 572bdf8

Please sign in to comment.