Server Version#:
Player Version#:
I’ve noticed that the PMS in the official docker container is constantly doing this loopback request every 5 seconds. The the screenshot of the console below. This results in unnecessary CPU circles, traffic and hard drive activity. Any idea what causes this behavior and how to stop it?
That’s likely due to the container’s health check. You can try disabling it. If you’re using Compose, you can add the following to your compose file:
healthcheck:
disable: true
If you’re using docker run -d ... try adding --no-healthcheck to your command.
Thanks, I’ll give that a try and report back. Should I expect any downsides after disabling that option?
I’m not sure, sorry. I only tested for a minutes to make sure the log messages stopped.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.
