Skip to content

Commit d206b32

Browse files
Michal Minářdeads2k
Michal Minář
authored andcommitted
imagepruning: temporarily disable event handling
Underlying gonum/graph assigns conflicting IDs to new nodes after node deletion. Thus two different nodes amy be assigned the same ID. This leads to panic when an edge is set between them. Temporarily disabling event handling until the package is fixed. This ensures that no new nodes will be added to the graph after the first node gets removed. Signed-off-by: Michal Minář <[email protected]>
1 parent 67bafb1 commit d206b32

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pkg/oc/admin/prune/imageprune/prune.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -1307,10 +1307,12 @@ func (p *pruner) runLoop(
13071307
failures = append(failures, failure)
13081308
}
13091309
delete(p.processedImages, res.Job.Image)
1310-
case event := <-isUpdateChan:
1311-
p.handleImageStreamEvent(event)
1312-
case event := <-imgUpdateChan:
1313-
p.handleImageEvent(event)
1310+
case <-isUpdateChan:
1311+
// TODO: fix gonum/graph to not reuse IDs of deleted nodes and reenable event handling
1312+
//p.handleImageStreamEvent(event)
1313+
case <-imgUpdateChan:
1314+
// TODO: fix gonum/graph to not reuse IDs of deleted nodes and reenable event handling
1315+
//p.handleImageEvent(event)
13141316
}
13151317
}
13161318
}

0 commit comments

Comments
 (0)