From fc414b02b29e04aae6761a4bd78db1015ff77b89 Mon Sep 17 00:00:00 2001 From: Kian Parvin Date: Fri, 28 Jul 2023 16:44:54 +0200 Subject: [PATCH] Allow jimm to continue start without a credential store Jimm could error out if no credential store is setup but this would require several tests to change and is best left for a separate PR --- service.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/service.go b/service.go index 8b9cb47b3..91825c807 100644 --- a/service.go +++ b/service.go @@ -480,8 +480,9 @@ func (s *Service) setupCredentialStore(ctx context.Context, p Params) error { s.jimm.CredentialStore = &s.jimm.Database return nil } - - return errors.E(op, "no credential store setup") + // Currently jimm will start without a credential store but + // functionality will be limited. + return nil } func newVaultStore(ctx context.Context, p Params) (jimmcreds.CredentialStore, error) {