aboutsummaryrefslogtreecommitdiff
path: root/src/connection/local.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-16 23:33:29 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-16 23:34:11 -0700
commit56d4c8e7245b9766bc4ed16af279117a83ae69a4 (patch)
tree750d697cc56612d122d6bb3824012240c5a34403 /src/connection/local.lisp
parent716e3704ca7691d8b1c99192d1c4658e5057d941 (diff)
downloadconsfigurator-56d4c8e7245b9766bc4ed16af279117a83ae69a4.tar.gz
updates for having dropped apply-properties
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection/local.lisp')
-rw-r--r--src/connection/local.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connection/local.lisp b/src/connection/local.lisp
index e219fea..f5a755c 100644
--- a/src/connection/local.lisp
+++ b/src/connection/local.lisp
@@ -1,7 +1,7 @@
(in-package :consfigurator.connection.local)
-(defmethod connect-and-apply ((type (eql :local)) host &key)
- (apply-properties (make-instance 'local-connection) host))
+(defmethod establish-connection ((type (eql :local)) host &key)
+ (make-instance 'local-connection))
(defclass local-connection (lisp-connection)
()