all other subscriptions in _service.rb are working fine,
however the python_package[#{node["sentry"]["pipname"]}]" always notifies the ressources for restart.
I have not found a work around and need to remove that resource from the collection. Can someone confirm this issue?
subscribes_resources = [
"template[#{node["sentry"]["config_file_path"]}]",
"python_package[#{node["sentry"]["pipname"]}]"
] +
node["sentry"]["database"]["pipdeps"].map do |dep|
dep_name, _ = dep
"python_package[#{dep_name}]"
end +
node["sentry"]["plugins"].map do |plugin|
plugin_name, _ = plugin
"python_package[#{plugin_name}]"
end
all other subscriptions in
_service.rbare working fine,however the
python_package[#{node["sentry"]["pipname"]}]"always notifies the ressources for restart.I have not found a work around and need to remove that resource from the collection. Can someone confirm this issue?