From 188f53e97b4050865e331918aab963df9f3bc085 Mon Sep 17 00:00:00 2001 From: Jim Lambert Date: Tue, 8 Sep 2020 14:38:30 -0400 Subject: [PATCH] refactor Pending to Active --- internal/session/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/session/state.go b/internal/session/state.go index c6ebf1422c..4756f2c134 100644 --- a/internal/session/state.go +++ b/internal/session/state.go @@ -17,7 +17,7 @@ type Status string const ( Pending Status = "pending" - Connected Status = "connected" + Active Status = "active" Canceling Status = "canceling" Closed Status = "closed" )