Skip to content

Commit

Permalink
fix artifacts from last merge (#384)
Browse files Browse the repository at this point in the history
Signed-off-by: denis-tingaikin <[email protected]>
  • Loading branch information
denis-tingaikin authored Nov 9, 2021
1 parent 6b89187 commit 32845d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ COPY . .
RUN go build -o /bin/forwarder .

FROM build as test
CMD go test -test.v ./... -timeout 2m
CMD go test -test.v ./...

FROM test as debug
WORKDIR /build/internal/tests/
Expand Down
2 changes: 1 addition & 1 deletion internal/tests/suite_setup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (f *ForwarderTestSuite) SetupSuite() {
logrus.SetFormatter(&nested.Formatter{})
logrus.SetLevel(logrus.DebugLevel)
log.EnableTracing(true)
f.ctx, f.cancel = context.WithTimeout(context.Background(), time.Minute)
f.ctx, f.cancel = context.WithCancel(context.Background())
f.ctx = log.WithLog(f.ctx, logruslogger.New(f.ctx))

starttime := time.Now()
Expand Down

0 comments on commit 32845d3

Please sign in to comment.