-
-
Notifications
You must be signed in to change notification settings - Fork 14
use command line argument to run daily cron tasks #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Weirdly enough breaks unrelated trello tests, apparently because of some parse failure of the bug refs in comments (detecting fixed as false). |
Hmm, if I set the log-level to debug, the errors goes away: Also this patch moves the error to the next test: diff --git a/test/utils.d b/test/utils.d
index 6740430..d5e2091 100644
--- a/test/utils.d
+++ b/test/utils.d
@@ -123,9 +127,12 @@ auto payloadServer(scope HTTPServerRequest req, scope HTTPServerResponse res)
if (expectation.jsonHandler !is null)
expectation.jsonHandler(payloadJson);
- payload = payloadJson.toString;
+ return res.writeJsonBody(payloadJson);
+ }
+ else
+ {
+ return res.writeBody(payload);
}
- return res.writeBody(payload);
}
} |
It seems it's more a multi-threading issue in our test script ... -> the cruel |
|
LDC is broken in #78 as well: So I am giving this a go & deploying it. |
|
Activated the scheduler: https://scheduler.heroku.com/dashboard |



No description provided.