We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13fca26 commit 1155b5dCopy full SHA for 1155b5d
1 file changed
src/components/c2d/compute_engine_docker.ts
@@ -246,6 +246,12 @@ export class C2DEngineDocker extends C2DEngine {
246
public override async start() {
247
const config = await getConfiguration()
248
const envConfig = await this.getC2DConfig().connection
249
+ if (!envConfig?.environments?.length) {
250
+ CORE_LOGGER.warn(
251
+ `Skipping C2D Engine ${this.getC2DConfig().hash}: no environments configured`
252
+ )
253
+ return
254
+ }
255
let sysinfo = null
256
try {
257
sysinfo = await this.docker.info()
0 commit comments