Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e60d0c7
Update Benchmark-Examples.md
Didayolo Mar 30, 2026
0847405
bump cryptography, pygments and other packages to fix vulnerabilities
Mar 31, 2026
9de20ab
Merge pull request #2297 from codalab/update_benchmark_examples_doc
Didayolo Mar 31, 2026
2fb79f7
Merge pull request #2300 from codalab/security_updates
Didayolo Mar 31, 2026
2f437bc
Fix queue attribute name in `tasks.py` (#2306)
Didayolo Mar 31, 2026
765f55d
Update version.json
ObadaS Apr 1, 2026
fc63d42
Merge pull request #2308 from codalab/version-bump
ObadaS Apr 1, 2026
1ad888d
Compute Worker- reorganizing and cleaning of compute worker (#2294)
ihsaan-ullah Apr 1, 2026
36f0acf
use submission queue when cancelling
ihsaan-ullah Apr 1, 2026
f012433
submission panel score logic updated to show primary column score alo…
ihsaan-ullah Apr 2, 2026
21b7515
Bundle Upload - Error made clear when there is a problem in yaml (#2309)
ihsaan-ullah Apr 2, 2026
dcb58c2
Merge pull request #2310 from codalab/cancel_submission
Didayolo Apr 2, 2026
a37c74f
Ignore flake8 rule W503
Didayolo Apr 3, 2026
d49db37
Merge pull request #2317 from codalab/flake8
Didayolo Apr 3, 2026
dbba19c
Merge pull request #2312 from codalab/score_in_submission_panel
Didayolo Apr 3, 2026
f3501a3
Leaderboard Pagination. (#2319)
IdirLISN Apr 9, 2026
e7a3260
refactored bundle_management code
ihsaan-ullah Apr 2, 2026
5e076a2
Merge pull request #2314 from codalab/bundle_management_refactoring
Didayolo Apr 9, 2026
f508da4
Quota Cleanup - Updates to remove unused starting kits and bundles an…
ihsaan-ullah Apr 9, 2026
9dca3d9
fix pg_dump.py not using the new container names
Apr 9, 2026
bdc577b
Merge pull request #2329 from codalab/fix_pg-dump
Didayolo Apr 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/pg_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
call([
'docker',
'exec',
'codabench-db-1',
'db',
'bash',
'-c',
f'PGPASSWORD=$DB_PASSWORD pg_dump -Fc -U $DB_USERNAME $DB_NAME > /app/backups/{dump_name}'
])

# Push/destroy dump
call([
'docker', 'exec', 'codabench-django-1', 'python', 'manage.py', 'upload_backup', f'{dump_name}'
'docker', 'exec', 'django', 'python', 'manage.py', 'upload_backup', f'{dump_name}'
])
Loading
Loading