diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index 8d3a02372c..59a9789c8a 100644 --- a/CHANGES_NEXT_RELEASE +++ b/CHANGES_NEXT_RELEASE @@ -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" diff --git a/src/lib/common/globals.cpp b/src/lib/common/globals.cpp index 12844b0e12..4b298d9fdf 100644 --- a/src/lib/common/globals.cpp +++ b/src/lib/common/globals.cpp @@ -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)