Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ func (ev tsWatermarkEvent) Execute(em *ElementManager) {
ss.updateUpstreamWatermark(ss.inputID, t.watermark)
em.changedStages.insert(sID)
}
// Clear the default hold after the inserts have occured.
// Clear the default hold after the inserts have occurred.
em.testStreamHandler.UpdateHold(em, t.watermark)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static class NextEvent implements Comparable<NextEvent> {
/** When, in wallclock time, should this event be emitted? */
public final long wallclockTimestamp;

/** When, in event time, should this event be considered to have occured? */
/** When, in event time, should this event be considered to have occurred? */
public final long eventTimestamp;

/** The event itself. */
Expand Down
4 changes: 2 additions & 2 deletions sdks/python/apache_beam/runners/worker/data_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ class ExceptionMetadata:
# The repr-ified Exception.
msg: str

# The transform where the exception occured.
# The transform where the exception occurred.
transform_id: str

# The instruction when the exception occured.
# The instruction when the exception occurred.
instruction_id: str


Expand Down
Loading