Skip to content

Commit

Permalink
fix(server): TypeError on async.retry
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Sep 17, 2016
1 parent dc93214 commit dc683f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class Server {
let console = new ColorConsole();
async.retry(
opts || {times: 1, interval: 0},
(cb: AsyncResultCallback<any>, results: any) => {
(cb: any, results: any) => {
let req = https.request(options, (res: IncomingMessage) => {
cb(undefined, res);
});
Expand Down

0 comments on commit dc683f0

Please sign in to comment.