Skip to content
This repository has been archived by the owner on Aug 17, 2020. It is now read-only.

Commit

Permalink
Merge pull request #173 from cwaltken-edrans/fix-run-docker
Browse files Browse the repository at this point in the history
Fix run-docker experimental mode
  • Loading branch information
cwaltken-edrans committed Oct 18, 2017
2 parents b56ecdb + 957da9c commit 32a01c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ func (i *dockerInfrastructure) Receive(results chan *result.LambdaResults) {
case msg := <-msgs:
lambdaResult := &api.RunnerResult{}
json.Unmarshal(msg.Body, lambdaResult)
lambdaAggregate := data.Lambdas[lambdaResult.RunnerID]
result.AddResult(&lambdaAggregate, lambdaResult)
lambdaAggregate := &data.Lambdas[lambdaResult.RunnerID]
result.AddResult(lambdaAggregate, lambdaResult)
results <- data
}
if data.AllLambdasFinished() {
Expand Down

0 comments on commit 32a01c8

Please sign in to comment.