()
| 128 | } |
| 129 | |
| 130 | func ErrorCortexYAMLNotFound() error { |
| 131 | return errors.WithStack(&errors.Error{ |
| 132 | Kind: ErrCortexYAMLNotFound, |
| 133 | Message: "no api config file was specified, and ./cortex.yaml does not exist; create cortex.yaml, or reference an existing config file by running `cortex deploy <config_file_path>`", |
| 134 | }) |
| 135 | } |
| 136 | |
| 137 | func ErrorDockerCtrlC() error { |
| 138 | return errors.WithStack(&errors.Error{ |
no test coverage detected