Skip to content

Commit

Permalink
fix default strategy to http-server
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed May 31, 2015
1 parent 0802ebd commit 90eac92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module.exports = function(options) {
var options = options || {};
options.timeout = options.timeout || 10000;
options.strategy = options.strategy || "http-servers";
options.strategy = options.strategy || "http-server";

if (options.strategy === "http-server") {
return new (require("./lib/manager-servers.js"))(options);
Expand Down

0 comments on commit 90eac92

Please sign in to comment.