If I change the executor for an existing flow and ...
# ask-community
n
If I change the executor for an existing flow and reregister it on Prefect Cloud, shouldn’t that trigger a new version to be registered? Or does the executor somehow get updated without a new version? It’s hard to tell what’s going on because the Cloud UI, as far as I can tell, doesn’t show you what executor is configured for a given flow. So to be safe I’ve run
prefect register --force
to make sure the new executor config is being sent up to Prefect Cloud. But I don’t know if that’s necessary.
k
Hi @Nicholas Chammas, for executor specifically, I think it won’t because the executor is not part of the serialized flow. You need to run a flow in DEBUG mode to see the executor, so yes I think it’s necessary if the only thing you’re changing in the executor
👌 1