cloudevents / cloudevents/sdk-java
Timestamp parsing does not fully support RFC 3339
Nobody has claimed this yet.
- Dominant language
- Java
- Stars
- 446
- Forks
- 172
- PR merge metrics
- No merged PRs in 30d
Description
https://github.com/cloudevents/sdk-java/blob/main/api/src/main/java/io/cloudevents/types/Time.java uses the OffsetDateTime parse method to parse timestamps. However, the RFC 3399 specification allows the use of spaces instead of a "T" in the ISO format:
https://datatracker.ietf.org/doc/html/rfc3339#section-5.6
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reading api/src/main/java/io/cloudevents/types/Time.java and the OffsetDateTime parse call. Compare its accepted timestamp format with RFC 3339 section 5.6; done means timestamps using a space instead of "T" are accepted while existing parsing continues to work.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- java
- Domain
- api
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 58/100