diff --git a/TODO.md b/TODO.md deleted file mode 100644 index 0cb79709b..000000000 --- a/TODO.md +++ /dev/null @@ -1,10 +0,0 @@ -- Fix all tests -- Fix uncompressed size backfill -- File issue to move queries out of uncompressed size backfill and use subquery random -- Consider removing the new jwest dependency -- Update the max fresh on registry tokens, 300s is not long enough to complete all registry actions -- Make sure we handle more of the v2 api than just what is required to push and pull -- Handle registry API error conditions -- Fill in the registry v2 methods on other storage engines -- Write a script to backfill the json metadata -- Verify the manifest, and throw the proper error if unverified diff --git a/endpoints/v2/__init__.py b/endpoints/v2/__init__.py index cee31aab3..846a304e7 100644 --- a/endpoints/v2/__init__.py +++ b/endpoints/v2/__init__.py @@ -1,6 +1,3 @@ -# XXX This code is not yet ready to be run in production, and should remain disabled until such -# XXX time as this notice is removed. - import logging from flask import Blueprint, make_response, url_for, request, jsonify diff --git a/endpoints/v2/blob.py b/endpoints/v2/blob.py index 677e177ad..58598f464 100644 --- a/endpoints/v2/blob.py +++ b/endpoints/v2/blob.py @@ -1,6 +1,3 @@ -# XXX This code is not yet ready to be run in production, and should remain disabled until such -# XXX time as this notice is removed. - import logging import re diff --git a/endpoints/v2/catalog.py b/endpoints/v2/catalog.py index 150791710..c483a8d41 100644 --- a/endpoints/v2/catalog.py +++ b/endpoints/v2/catalog.py @@ -1,6 +1,3 @@ -# XXX This code is not yet ready to be run in production, and should remain disabled until such -# XXX time as this notice is removed. - from flask import jsonify, url_for from endpoints.v2 import v2_bp diff --git a/endpoints/v2/manifest.py b/endpoints/v2/manifest.py index 392a4fbed..935045734 100644 --- a/endpoints/v2/manifest.py +++ b/endpoints/v2/manifest.py @@ -1,8 +1,4 @@ -# XXX This code is not yet ready to be run in production, and should remain disabled until such -# XXX time as this notice is removed. - import logging -import re import jwt.utils import json diff --git a/endpoints/v2/tag.py b/endpoints/v2/tag.py index aedcb3fb8..16ab87431 100644 --- a/endpoints/v2/tag.py +++ b/endpoints/v2/tag.py @@ -1,6 +1,3 @@ -# XXX This code is not yet ready to be run in production, and should remain disabled until such -# XXX time as this notice is removed. - from flask import jsonify, url_for from endpoints.v2 import v2_bp, require_repo_read diff --git a/endpoints/v2/v2auth.py b/endpoints/v2/v2auth.py index 7c6a14d92..4e48b4416 100644 --- a/endpoints/v2/v2auth.py +++ b/endpoints/v2/v2auth.py @@ -1,6 +1,3 @@ -# XXX This code is not yet ready to be run in production, and should remain disabled until such -# XXX time as this notice is removed. - import logging import re import time