Merge pull request #426 from positiveblue/fix-425

rpcserver: format rpcLog error
This commit is contained in:
Jordi Montes 2023-01-06 11:31:18 +01:00 committed by GitHub
commit 15dfbfbf85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View file

@ -238,7 +238,9 @@ func (s *rpcServer) Stop() error {
}
// serverHandler is the main event loop of the server.
func (s *rpcServer) serverHandler(blockChan chan int32, blockErrChan chan error) {
func (s *rpcServer) serverHandler(blockChan chan int32,
blockErrChan chan error) {
defer s.wg.Done()
for {
@ -275,7 +277,7 @@ func (s *rpcServer) serverHandler(blockChan chan int32, blockErrChan chan error)
}
}
rpcLog.Error("Unknown server error: %v", err)
rpcLog.Errorf("Unknown server error: %v", err)
case height := <-blockChan:
rpcLog.Infof("Received new block notification: "+

View file

@ -11,6 +11,9 @@ RUN cd /tmp \
&& mkdir -p /tmp/build/.modcache \
&& cd /tmp/tools \
&& go install -trimpath -tags=tools github.com/golangci/golangci-lint/cmd/golangci-lint \
&& chmod -R 777 /tmp/build/
&& chmod -R 777 /tmp/build/ \
&& git config --global --add safe.directory /build
# The last line is needed to ensure that go build is able to gather
# information from the vsc used in the builds to get the commit hash.
WORKDIR /build