diff --git a/openswarm-edge/app/bundles.py b/openswarm-edge/app/bundles.py index 95fbb69a..16b77251 100644 --- a/openswarm-edge/app/bundles.py +++ b/openswarm-edge/app/bundles.py @@ -22,7 +22,7 @@ from botocore.exceptions import ClientError logger = logging.getLogger(__name__) _ENDPOINT = os.environ.get("TIGRIS_ENDPOINT", "https://fly.storage.tigris.dev") -_BUCKET = os.environ.get("TIGRIS_BUCKET", "openswarm-apps") +_BUCKET = os.environ.get("TIGRIS_BUCKET", "openswarm-app-bundles") _TTL_SECONDS = int(os.environ.get("EDGE_BUNDLE_TTL_SECONDS", "120")) _MAX_CACHED_BUNDLES = int(os.environ.get("EDGE_BUNDLE_CACHE_MAX", "200")) _MAX_UNPACKED_BYTES = 100 * 1024 * 1024 # guard against a decompression bomb diff --git a/openswarm-edge/fly.toml b/openswarm-edge/fly.toml index fb9eeb36..c90a3101 100644 --- a/openswarm-edge/fly.toml +++ b/openswarm-edge/fly.toml @@ -16,7 +16,7 @@ kill_timeout = '30s' # Private 6PN address of the cloud app (same org). Not public. OPENSWARM_CLOUD_INTERNAL_URL = 'http://openswarm-cloud.internal:8080' TIGRIS_ENDPOINT = 'https://fly.storage.tigris.dev' - TIGRIS_BUCKET = 'openswarm-apps' + TIGRIS_BUCKET = 'openswarm-app-bundles' [http_service] internal_port = 8080