Skip to content

Commit f2366b4

Browse files
committedOct 17, 2015
Increase delay to 5000 at most
1 parent bf99f4a commit f2366b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ server.route([
1010
handler: (request, reply) => {
1111
setTimeout(() => {
1212
reply(request.query.q).type('text/plain');
13-
}, 3000 * Math.random());
13+
}, 5000 * Math.random());
1414
}
1515
}
1616
]);

0 commit comments

Comments
 (0)
Please sign in to comment.