Hi, I’m running into an issue with my Worker + Containers setup. In my wrangler.toml, I’ve defined b

Hi, I’m running into an issue with my Worker + Containers setup. In my wrangler.toml, I’ve defined both the container and the durable object binding like this:
[[env.production.containers]]
max_instances = 10
class_name = "ForumFullscanContainer"
image = "./containers/forum-fullscan/ForumFullscanDockerfile.dockerfile"

[[env.production.durable_objects.bindings]]
name = "FORUM_FULLSCAN_CONTAINER"
class_name = "ForumFullscanContainer"


I deployed locally yesterday using npx wrangler deploy --env=production, and it was working fine. Today, after another deployment via our GitHub Action, it stopped working. The wrangler.toml hasn’t changed. and the Durable Object migration has also been applied.
The error I’m seeing in the Worker logs is:
"Container is not enabled for this durable object class. Have you correctly setup your wrangler.toml?"
Could someone help me understand why this might be happening?
Was this page helpful?