Skip to content

Commit

Permalink
Merge branch 'main' into endpointslice-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
pxaws authored Feb 7, 2025
2 parents 42f2f53 + 981d901 commit 8c0a14a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/stop-localstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ jobs:
- name: Copy state
run: aws s3 cp s3://${{inputs.s3_integration_bucket}}/integration-test/local-stack-terraform-state/${{inputs.github_sha}}/terraform.tfstate .

- name: Install Terraform
uses: hashicorp/setup-terraform@v3

- name: Verify Terraform version
run: terraform --version

Expand Down
4 changes: 2 additions & 2 deletions extension/server/extension.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func NewServer(logger *zap.Logger, config *Config) *Server {
// Initialize a new cert watcher with cert/key pair
watcher, err := tlsInternal.NewCertWatcher(config.TLSCertPath, config.TLSKeyPath, config.TLSCAPath, logger)
if err != nil {
s.logger.Error("failed to initialize cert watcher", zap.Error(err))
s.logger.Debug("failed to initialize cert watcher", zap.Error(err))
return s
}

Expand Down Expand Up @@ -86,7 +86,7 @@ func (s *Server) Start(context.Context, component.Host) error {
go func() {
err := s.httpsServer.ListenAndServeTLS("", "")
if err != nil {
s.logger.Error("failed to serve and listen", zap.Error(err))
s.logger.Debug("failed to serve and listen", zap.Error(err))
}
}()
}
Expand Down

0 comments on commit 8c0a14a

Please sign in to comment.