1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00
This commit is contained in:
Casey Lee 2019-01-15 23:12:10 -08:00
parent 6e74807de9
commit f6d3cdeecb
3 changed files with 6 additions and 6 deletions

View file

@ -4,8 +4,8 @@ import (
"bytes"
"errors"
"fmt"
"io/ioutil"
"io"
"io/ioutil"
"os"
"path/filepath"

View file

@ -22,11 +22,11 @@ func TestNewWorkflow(t *testing.T) {
runcount := 0
successWorkflow := NewPipelineExecutor(
func() error {
runcount ++
runcount++
return nil
},
func() error {
runcount ++
runcount++
return nil
})
assert.Nil(successWorkflow())

View file

@ -32,7 +32,7 @@ type dockerMessage struct {
func (i *DockerExecutorInput) logDockerOutput(dockerResponse io.Reader) {
scanner := bufio.NewScanner(dockerResponse)
if i.Logger == nil {
return
return
}
for scanner.Scan() {
i.Logger.Infof(scanner.Text())
@ -66,7 +66,7 @@ func (i *DockerExecutorInput) writeLog(isError bool, format string, args ...inte
func (i *DockerExecutorInput) logDockerResponse(dockerResponse io.ReadCloser, isError bool) {
if dockerResponse == nil {
return
return
}
defer dockerResponse.Close()
@ -83,7 +83,7 @@ func (i *DockerExecutorInput) logDockerResponse(dockerResponse io.ReadCloser, is
if err := json.Unmarshal(line, &msg); err == nil {
if msg.Error != "" {
i.writeLog(isError, "%s", msg.Error)
return
return
}
if msg.Status != "" {