From b4b792a04fcb050e2844cbf3bc60538f390106cc Mon Sep 17 00:00:00 2001 From: Drew Walters Date: Fri, 3 Apr 2020 20:49:17 +0000 Subject: [PATCH] Fix function name misspelling Change-Id: I8ffb5fc459360fb9cf4cb84dc0d6ab0aa4f30d21 Signed-off-by: Drew Walters --- pkg/remote/remote_direct.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/remote/remote_direct.go b/pkg/remote/remote_direct.go index 7c6c1fc01..3b57c83df 100644 --- a/pkg/remote/remote_direct.go +++ b/pkg/remote/remote_direct.go @@ -90,7 +90,7 @@ func (a *Adapter) configureClient(remoteURL string) error { } // initializeAdapter retrieves the remote direct configuration defined in the Airship configuration file. -func (a *Adapter) intializeAdapter(settings *environment.AirshipCTLSettings) error { +func (a *Adapter) initializeAdapter(settings *environment.AirshipCTLSettings) error { cfg := settings.Config() bootstrapSettings, err := cfg.CurrentContextBootstrapInfo() if err != nil { @@ -165,7 +165,7 @@ func (a *Adapter) DoRemoteDirect() error { func NewAdapter(settings *environment.AirshipCTLSettings) (*Adapter, error) { a := &Adapter{} a.context = context.Background() - err := a.intializeAdapter(settings) + err := a.initializeAdapter(settings) if err != nil { return a, err }