That message usually shows up when a system blocks unsafe connections, which is a good security step. It’s similar to how runt por protects users by only allowing secure access when checking vehicle data, so info stays private and safe.
It looks like MLflow auto-logging is kicking in by default whenever you call .fit(), which is why you’re seeing runs even without explicitly using mlflow.sklearn.autolog(). To fix this, you can disable the global autologging and only trigger it when ...