From fe9c0e37aaca73e663682724fa2de55036774c6c Mon Sep 17 00:00:00 2001 From: Jason Ray Date: Mon, 25 Mar 2019 19:12:33 -0400 Subject: [PATCH] Resolve build issue with beanstalk. The current travis-ci build is failing to start `beanstalkd`. This is because the argument `-d` is not recognized by the `beanstalkd` application (perhaps it was in a previous version of beanstalk?). I switched to start `beanstalkd` in the background using `&` which likely achieve the same intent --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 30e181c..11b2f00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,6 @@ node_js: before_install: - sudo apt-get update -qq - sudo apt-get install -qq beanstalkd - - sudo beanstalkd -d -l 127.0.0.1 -p 11300 + - sudo beanstalkd -l 127.0.0.1 -p 11300 & script: npm run travis after_success: npm run coverage