(ctx context.Context, execID string, config client.ExecStartOptions)
| 296 | } |
| 297 | |
| 298 | func (d *DryRunClient) ExecStart(ctx context.Context, execID string, config client.ExecStartOptions) (client.ExecStartResult, error) { |
| 299 | _, ok := d.execs.LoadAndDelete(execID) |
| 300 | if !ok { |
| 301 | return client.ExecStartResult{}, fmt.Errorf("invalid exec ID %q", execID) |
| 302 | } |
| 303 | return client.ExecStartResult{}, nil |
| 304 | } |
| 305 | |
| 306 | // Functions delegated to original APIClient (not used by Compose or not modifying the Compose stack) |
| 307 |
no outgoing calls
no test coverage detected