is the terminate button removed intentionally? or is it just another ui bug, for my in progress workflows i am not seeing the terminate button.
We have terminated this by default on the WebUI. You can configure this but considering it introduces security risk we recently changed this.
thanks, how to configure this
If you want to enable this please use TEMPORAL_PERMIT_WRITE_API environment variable set to true.
@madhu we’ve decided to enable it by default when running from docker-compose, the next patch version will have this change
i tried adding this to my docker compose but it did not help, am i missing something here?
temporal-web:
image: temporalio/web:${WEB_TAG:-0.28.0}
environment:
- “TEMPORAL_GRPC_ENDPOINT=temporal:7233”
- "TEMPORAL_PERMIT_WRITE_API=true"
ports:
- “8088:8088”
depends_on:
- temporal
@madhu there was one more change needed on webui side to read the variable at startup instead of build time, i’ve published a new image v0.28.1
for Web UI
Please feel free to use the docker-compose.yml
file from this PR (or to update the web tag to v0.28.1 in your docker compose) https://github.com/temporalio/temporal/pull/657
upd. The PR is checked in
yup! i now see my red colored terminate button!! thanks much appreciate your help in getting this added fast!