Skip to content

Commit

Permalink
commented out Docker spawning per issue microservices-demo#3
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger Berlind committed Apr 3, 2017
1 parent 3370463 commit 0812f0e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
public class ShippingTaskHandler {

@Autowired
DockerSpawner docker;
//DockerSpawner docker;

public void handleMessage(Shipment shipment) {
System.out.println("Received shipment task: " + shipment.getName());
docker.init();
docker.spawn();
//docker.init();
//docker.spawn();
}
}

0 comments on commit 0812f0e

Please sign in to comment.