We want to use mlflow-export-import to migrate models between OOS tracking servers in an enterprise setting (at a bank). However, since our tracking servers are both behind oauth2 proxies, support for bearer tokens is essential for us to make it work.
I inspected the code and the reason for this is that the function def get_mlflow_host_token() does not actually loads the token from the environment variable, and hence returns none.
Is this on purpose? Otherwise., I created a PR that fixes the issue.