Commit f763ea82 authored by Whyrusleeping's avatar Whyrusleeping Committed by GitHub

Merge pull request #4472 from ipfs/fix/4470

Demote bitswap error to an info
parents 5b77b660 bdfed2e6
...@@ -234,7 +234,7 @@ func (mq *msgQueue) doWork(ctx context.Context) { ...@@ -234,7 +234,7 @@ func (mq *msgQueue) doWork(ctx context.Context) {
err = mq.openSender(ctx) err = mq.openSender(ctx)
if err != nil { if err != nil {
log.Errorf("couldnt open sender again after SendMsg(%s) failed: %s", mq.p, err) log.Infof("couldnt open sender again after SendMsg(%s) failed: %s", mq.p, err)
// TODO(why): what do we do now? // TODO(why): what do we do now?
// I think the *right* answer is to probably put the message we're // I think the *right* answer is to probably put the message we're
// trying to send back, and then return to waiting for new work or // trying to send back, and then return to waiting for new work or
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment