Skip to content

Commit

Permalink
log failure to connect to full node without returning it
Browse files Browse the repository at this point in the history
  • Loading branch information
nonsense committed Feb 15, 2022
1 parent 44fb837 commit 64a3637
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storagemarket/impl/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (p *Provider) Start(ctx context.Context) error {

// connect the index provider node with the full node and protect that connection
if err := p.meshCreator.Connect(ctx); err != nil {
return fmt.Errorf("failed to connect index provider host with the full node: %w", err)
log.Errorf("failed to connect index provider host with the full node: %s", err)
}

go func() {
Expand Down

0 comments on commit 64a3637

Please sign in to comment.