removeFromPreparation removes the given name from the in-creation map.
(name string)
| 77 | |
| 78 | // removeFromPreparation removes the given name from the in-creation map. |
| 79 | func (s *creationState) removeFromPreparation(name string) { |
| 80 | s.mu.Lock() |
| 81 | defer s.mu.Unlock() |
| 82 | delete(s.currentlyInCreation, name) |
| 83 | } |
no outgoing calls