Correct Worker name to match deployed: isamples-data#121
Merged
rdhyee merged 1 commit intoisamplesorg:mainfrom Apr 17, 2026
Merged
Correct Worker name to match deployed: isamples-data#121rdhyee merged 1 commit intoisamplesorg:mainfrom
rdhyee merged 1 commit intoisamplesorg:mainfrom
Conversation
Discovered during initial deploy that data.isamples.org was already served by a Cloudflare Worker named 'isamples-data' (not 'data-isamples-org' as I'd named the new one). Also found two wrangler.toml issues: - `routes` appearing after [[r2_buckets]] got TOML-scoped to that table - No explicit account_id meant non-interactive deploys failed with "more than one account available" Fixes: - Rename Worker to 'isamples-data' so `wrangler deploy` atomically replaces the existing Worker at that name (preserving the route binding in one step). - Add account_id for Raymond.yee@gmail.com's account. - Move `routes` above [[r2_buckets]] so TOML parses it as a top-level key. - Update README to document the name choice. Deployed 2026-04-17, verified: Cache-Control: public, max-age=31536000, immutable is now returned for isamples_202601_*.parquet files. Range requests continue to work (206 + Content-Range). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up to #120 — discovered during deploy that the existing Worker is named
isamples-data, not our inventeddata-isamples-org. Renamed sowrangler deployatomically replaces the existing Worker. Also fixes TOML ordering (routes was being scoped to r2_buckets table) and adds the explicit account_id.Verified live:
curl -sI https://data.isamples.org/isamples_202601_h3_summary_res4.parquetnow returnscache-control: public, max-age=31536000, immutable.🤖 Generated with Claude Code