I was trying to deploy a worker that connect to a tail worker, but wrangler gave me an error:tail_not_allowed [code: 100150] Here is my `wrangler.toml` ``` name = "check-ios-app-update" main = "src/worker.js" compatibility_date = "2024-06-19" workers_dev = true tail_consumers = [{service = "tail"}] [placement] mode = "smart" [triggers] crons = [ "*/30 * * * *" ] [[kv_namespaces]] id = "<hidden>" binding = "KV" ```