-
Notifications
You must be signed in to change notification settings - Fork 73
[SYNPY-1590] Implement documentation of Submission(+Status, +Bundle) OOP model #1252
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
base: synpy-1590-submission-model-functionality
Are you sure you want to change the base?
[SYNPY-1590] Implement documentation of Submission(+Status, +Bundle) OOP model #1252
Conversation
…issionstatus file
…rn as evaluations design
…OR submission annotations
…rom_dict for submissionstatus calls
… organizer on the client. cancel request returns no response body.
…on_number can be ignored for docker submissions
0ddece3 to
689fcb1
Compare
a9977b2 to
b8c0ee5
Compare
|
|
||
| print("\n=== 3. Fetching submission bundle ===") | ||
|
|
||
| # Get all submission bundles for the evaluation |
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.
@jaymedina When I tested it out using my own test submission and evaluation id, the code gets stuck after print("Fetching all submission bundles for the evaluation...").
When I tried debugging further, there seems to be a problem with rest_get_paginated_async used by get_evaluation_submissions that caused rest_get_paginated_async to be in an infinite loop based on the code here
As you can see, rest_get_paginated_async is in an infinite loop because the result length is always 1 and even if offset keeps increasing, the result is still 1.
| ``` | ||
| </details> | ||
|
|
||
| ## References |
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.
Missing submission?
| @@ -0,0 +1,131 @@ | |||
| # Submissions, SubmissionStatuses, SubmissionBundles | |||
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.

See #1250