(ctx context.Context, image string)
| 121 | } |
| 122 | |
| 123 | func cleanImage(ctx context.Context, image string) string { |
| 124 | ref, err := reference.ParseAnyReference(image) |
| 125 | if err != nil { |
| 126 | common.Logger(ctx).Error(err) |
| 127 | return "" |
| 128 | } |
| 129 | |
| 130 | return ref.String() |
| 131 | } |
searching dependent graphs…