Robert Pavlov
Explore posts from serversCDCloudflare Developers
•Created by Robert Pavlov on 9/26/2024 in #workers-help
Breaking Changes in Worker Name Resolution
I have workers with names that start with a UUID-like segment (e.g., abcd1234-worker). These workers were functioning as expected until this morning. Now, when I attempt to open the worker URL (e.g., abcd1234-worker.[accountname].workers.dev), Cloudflare responds with “There is nothing here yet.”
I suspect Cloudflare is attempting to resolve this as a deployment version (abcd1234) of a worker named worker, rather than resolving the full worker name (abcd1234-worker). If the first segment doesn’t match the UUID-like pattern (8 characters, a-z0-9), then the worker url resolves correctly. if I access the deployment URL directly, it works fine.
Everything was working yesterday, but as of today, none of my workers with this naming pattern are resolving correctly.
Is this a bug or an intentional change in behaviour? Was there any announcement regarding this breaking change?
2 replies
DTDrizzle Team
•Created by Robert Pavlov on 3/21/2023 in #help
Unable to upgrade migrations if there are ones that do not change state but manipulate data
Hi! I have 0.16.x migrations. At some point, I needed to manipulate the data without changing the db structure, so I just made a copy of the latest migration, assigned new ID in snapshot.json and added my sql code. It worked fine, but when I moved to [email protected] and tried to upgrade the migrations, I got the following errors:
If I delete the one I created (20230214133201) and fix ids in previous and next, then upgrade works as expected. How can I solve this without removing the migration?
1 replies