(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption)
| 117 | } |
| 118 | |
| 119 | func (r *realGraphClient) Status(dag *graph.DAG, objOld, objNew client.Object, opts ...GraphOption) { |
| 120 | r.doWrite(dag, objOld, objNew, ActionStatusPtr(), opts...) |
| 121 | } |
| 122 | |
| 123 | func (r *realGraphClient) Do(dag *graph.DAG, objOld, objNew client.Object, action *Action, parent *ObjectVertex, opts ...GraphOption) *ObjectVertex { |
| 124 | if dag.Root() == nil { |
nothing calls this directly
no test coverage detected