mirror of
https://github.com/rancher-sandbox/rancher-desktop.git
synced 2021-10-13 00:04:06 +03:00
Fix an error in the K8s state
- Final state should be STARTED, not VM_STARTED Signed-off-by: Eric Promislow <epromislow@suse.com>
This commit is contained in:
@@ -779,7 +779,7 @@ export default class LimaBackend extends events.EventEmitter implements K8s.Kube
|
||||
100,
|
||||
this.client?.waitForReadyNodes() ?? Promise.reject(new Error('No client')));
|
||||
|
||||
this.setState(K8s.State.VM_STARTED);
|
||||
this.setState(K8s.State.STARTED);
|
||||
} catch (err) {
|
||||
console.error('Error starting lima:', err);
|
||||
this.setState(K8s.State.ERROR);
|
||||
|
||||
Reference in New Issue
Block a user