Skip to content

Commit

Permalink
Fix typo in error message. Closes #163
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidaguerre committed Feb 11, 2021
1 parent 5fd4ffb commit 16f7929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/connections.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func getCommentQueries(updates connection_config.ConnectionMap) ([]string, error
log.Println("[TRACE] hydrate err chan select", "error", err)
return nil, err
case <-time.After(10 * time.Second):
return nil, fmt.Errorf("timed out retrieveing schema from plugins")
return nil, fmt.Errorf("timed out retrieving schema from plugins")
case a := <-queryChan:
commentQueries = append(commentQueries, a...)
}
Expand Down

0 comments on commit 16f7929

Please sign in to comment.