(toDelete []string)
| 664 | } |
| 665 | |
| 666 | func (c *ActionCache) deleteDedupEntries(toDelete []string) { |
| 667 | for _, key := range toDelete { |
| 668 | delete(c.Entries, key) |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | func truncateSHAForLog(sha string) string { |
| 673 | return stringutil.Truncate(sha, 11) |