aboutsummaryrefslogtreecommitdiff
path: root/src/connection.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-28 16:41:15 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-28 16:42:46 -0700
commitd50a65bd7adf5e4983c1f41b6bbe76b4a9d4e058 (patch)
tree8b624664ec48d944471345be4d1cc4ddc39173bc /src/connection.lisp
parentfe9117e0bcaf65db50930e6320ff7012cee541e3 (diff)
downloadconsfigurator-d50a65bd7adf5e4983c1f41b6bbe76b4a9d4e058.tar.gz
eliminate global value for *CONNECTION*
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection.lisp')
-rw-r--r--src/connection.lisp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/connection.lisp b/src/connection.lisp
index 6efce31..f839a65 100644
--- a/src/connection.lisp
+++ b/src/connection.lisp
@@ -20,12 +20,9 @@
;;;; Connections
-;; global value gets set in connection/local.lisp, but the symbol is not
-;; exported as it should only get bound by DEPLOY*
(defvar *connection* nil
"Object representing the currently active connection.
-Connections dynamically bind this variable and then apply properties. Its
-global value should be regarded as a constant.")
+Deployments dynamically bind this variable and then apply properties.")
;; generic function operating on keywords which identify connection types
(defgeneric establish-connection (type remaining &key)