mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/master/jobcluster/job/worker/MantisWorkerMetadataImpl.java [257:271]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        switch (state) {
        case Accepted:
            this.acceptedAt = when;
            break;
        case Launched:
            this.launchedAt = when;
            break;
        case StartInitiated:
            this.startingAt = when;
            break;
        case Started:
            this.startedAt = when;
            break;
        case Failed:
            this.completedAt = when;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/server/master/store/MantisWorkerMetadataWritable.java [201:215]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        switch (state) {
        case Accepted:
            this.acceptedAt = when;
            break;
        case Launched:
            this.launchedAt = when;
            break;
        case StartInitiated:
            this.startingAt = when;
            break;
        case Started:
            this.startedAt = when;
            break;
        case Failed:
            this.completedAt = when;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



