You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We saw these logs from the resource provider server:
2024-09-03 13:40:03,562 ERROR ansible_base.resource_registry.apps RESOURCE_SERVER is not configured. Reverse sync will not be enabled.
This is unnecessarily alarmist. The resource provider should never consider doing reverse sync, because it does sync, but that's a forward sync!
This proposes that if RESOURCE_SERVER_SYNC_ENABLED is set to False, then we simply do not emit that log. That is all. This is a non-functional change. Only logs will be affected.
The text was updated successfully, but these errors were encountered:
Due to dynaconf implementation details, I discovered that eda-server may
set `{"URL": None}` for the `RESOURCE_SERVER` setting. This is totally
fine with me, and should be the same as not defining that setting. But
it requires this code change.
Fixes#602
This also makes the new auth class a no-op when the resource server
is not defined, reusing that same logic.
We saw these logs from the resource provider server:
This is unnecessarily alarmist. The resource provider should never consider doing reverse sync, because it does sync, but that's a forward sync!
This proposes that if
RESOURCE_SERVER_SYNC_ENABLED
is set to False, then we simply do not emit that log. That is all. This is a non-functional change. Only logs will be affected.The text was updated successfully, but these errors were encountered: