Skip to content

Commit dff563d

Browse files
committed
replace return with continue
1 parent e35a6ef commit dff563d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

realtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (c *Client) startRealtimeUpdates(ctx context.Context) {
3939
parsedTime, err := parseUpdatedAtFromSSE(line)
4040
if err != nil {
4141
c.log.Errorf("Error reading realtime stream: %v", err)
42-
return
42+
continue
4343
}
4444
if parsedTime.After(envUpdatedAt) {
4545
err = c.UpdateEnvironment(ctx)

0 commit comments

Comments
 (0)