docs: an event's time cannot be updated - #68
Open
olavgg wants to merge 1 commit into
Open
Conversation
Platform PR #325 (fix(api): event time cannot be updated, so remove it from the update form) takes eventTime out of the event update form. The columnar store partitions events by their time and a row cannot move between partitions, so the api used to accept the field, answer 200 echoing the new value, and then fail to apply it; the field is gone from the form, and with the strict request reader an update naming it is a 400. The update section still listed eventTime among the updatable fields, said it was set from an ISO-8601 string, and counted it among the fields setNull is refused on. All three are replaced by the rule as it stands: eventTime is fixed at creation, an update naming it is refused, and the way to fix a mis-timed event is to delete and rewrite it or to write a correcting event. Verified: npm run build succeeds. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Signed-off-by: Olav Gjerde <olav@intellistream.ai>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Platform PR #325 (fix(api): event time cannot be updated, so remove it from the update form) takes eventTime out of the event update form. The columnar store partitions events by their time and a row cannot move between partitions, so the api used to accept the field, answer 200 echoing the new value, and then fail to apply it; the field is gone from the form, and with the strict request reader an update naming it is a 400.
The update section still listed eventTime among the updatable fields, said it was set from an ISO-8601 string, and counted it among the fields setNull is refused on. All three are replaced by the rule as it stands: eventTime is fixed at creation, an update naming it is refused, and the way to fix a mis-timed event is to delete and rewrite it or to write a correcting event.
Verified: npm run build succeeds.