(scale *int)
| 425 | } |
| 426 | |
| 427 | func increment(scale *int) *int { |
| 428 | i := 1 |
| 429 | if scale != nil { |
| 430 | i = *scale + 1 |
| 431 | } |
| 432 | return &i |
| 433 | } |
| 434 | |
| 435 | func (s *composeService) actualVolumes(ctx context.Context, projectName string) (types.Volumes, error) { |
| 436 | opts := client.VolumeListOptions{ |
no outgoing calls
no test coverage detected