aboutsummaryrefslogtreecommitdiff
path: root/src/connection.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-27 15:07:12 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-27 15:07:12 -0700
commit949abfab79922c5673d37bd142559c52faa4767c (patch)
tree1e4375810668425bb18a079376dad7f0e6c5d7e1 /src/connection.lisp
parent60d708c289a4ad547bc58e6cf33c2b8bb53b2da4 (diff)
downloadconsfigurator-949abfab79922c5673d37bd142559c52faa4767c.tar.gz
store record of remote cache in field of *CONNECTION*
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection.lisp')
-rw-r--r--src/connection.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/connection.lisp b/src/connection.lisp
index b6a23fa..0ba08a6 100644
--- a/src/connection.lisp
+++ b/src/connection.lisp
@@ -55,7 +55,9 @@ For an example of usage, see the :SUDO connection type."))
((parent
:initform *connection*
:documentation
- "The value of *CONNECTION* at the time this connection was established.")))
+ "The value of *CONNECTION* at the time this connection was established.")
+ (cached-data
+ :initform nil)))
(defclass lisp-connection (connection) ())