We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ed8e2 commit f1c0b8fCopy full SHA for f1c0b8f
components/local-app/pkg/bastion/bastion.go
@@ -391,13 +391,17 @@ func (b *Bastion) handleUpdate(ur *WorkspaceUpdateRequest) {
391
ws.cancel()
392
delete(b.workspaces, u.ID)
393
b.Callbacks.InstanceUpdate(ws)
394
- b.workspaceMapChangeChan <- len(b.workspaces)
+ if b.localAppTimeout != 0 {
395
+ b.workspaceMapChangeChan <- len(b.workspaces)
396
+ }
397
return
398
}
399
400
b.workspaces[u.ID] = ws
401
402
403
404
405
406
407
func generateSSHKeys(instanceID string) (privateKeyFN string, publicKey string, err error) {
0 commit comments