Skip to content

Commit 8c5ac2f

Browse files
fix: incorrect comparison used for time (#1608)
Signed-off-by: Matthew Wilson <54033231+wilson-matthew@users.noreply.github.com>
1 parent ddfa020 commit 8c5ac2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/pkg/sync/blob/blob_sync.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (hs *Sync) sync(ctx context.Context, dataSync chan<- sync.DataSync, skipChe
8888
if err != nil {
8989
return fmt.Errorf("couldn't get object attributes: %v", err)
9090
}
91-
if hs.lastUpdated == updated {
91+
if hs.lastUpdated.Equal(updated) {
9292
hs.Logger.Debug("configuration hasn't changed, skipping fetching full object")
9393
return nil
9494
}

0 commit comments

Comments
 (0)