From 2cc91c224edcbc8a266c8b82c9b898364f399cc3 Mon Sep 17 00:00:00 2001 From: Jose Garcia Date: Fri, 27 Aug 2021 12:53:27 -0400 Subject: [PATCH] add comment for improvements --- internal/codespaces/codespaces.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/codespaces/codespaces.go b/internal/codespaces/codespaces.go index 11e0a8902..8897c0839 100644 --- a/internal/codespaces/codespaces.go +++ b/internal/codespaces/codespaces.go @@ -62,6 +62,7 @@ type logger interface { Println(v ...interface{}) (int, error) } +// TODO(josebalius): we should move some of this to the liveshare.Connection struct func connectionReady(codespace *api.Codespace) bool { ready := codespace.Environment.Connection.SessionID != "" ready = ready && codespace.Environment.Connection.SessionToken != ""