-
Notifications
You must be signed in to change notification settings - Fork 786
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
Stop evaluating booleans #2614
Stop evaluating booleans #2614
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2614 +/- ##
==========================================
- Coverage 73.21% 73.14% -0.07%
==========================================
Files 82 82
Lines 5338 5347 +9
==========================================
+ Hits 3908 3911 +3
- Misses 1430 1436 +6
Continue to review full report at Codecov.
|
@@ -696,7 +696,7 @@ def main(): | |||
q_params["pk"] = challenge_pk | |||
|
|||
if settings.DEBUG or settings.TEST: | |||
if eval(LIMIT_CONCURRENT_SUBMISSION_PROCESSING): | |||
if LIMIT_CONCURRENT_SUBMISSION_PROCESSING: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@drepram Why do we need to remove this?
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This pull request has been automatically closed as there is no further activity. Thank you for your contributions. |
This is one of the fix of the problem that has occurred on EvalAI-ngx, particularly Cloud-CV/EvalAI-ngx#249.
The changes I've proposed removed the evaluation though I've not been able to resolve the angular-devkit issue.
Here are the things that I've read and have tried:
akveo/ngx-admin#2138
https://stackoverflow.com/questions/56393158/errors-data-path-buildersapp-shell-should-have-required-property-class
https://stackoverflow.com/questions/56542518/schema-validation-failed-with-the-following-errors-data-path-buildersapp-sh/56624167
https://stackoverflow.com/questions/56506473/ionic-problem-ngschema-validation-failed-with-the-following-errorsngdata-p/56537342#56537342
bpmn-io/bpmn-js-example-angular#15
Perhaps someone else can give me some insight on how I can resolve this issue?