We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When parsing environment file we need to detect the os an architecture. However we do this once per profile instead of once per environment file:
2025-02-11 08:53:03,339 DEBUG [main] Created new process group 2442346 2025-02-11 08:53:03,356 DEBUG [envfile] Detected os: 'linux' 2025-02-11 08:53:03,356 DEBUG [envfile] Detected machine: 'x86_64' 2025-02-11 08:53:03,356 DEBUG [envfile] Using provider: 'minikube' 2025-02-11 08:53:03,356 DEBUG [envfile] Using driver: 'kvm2' 2025-02-11 08:53:03,356 DEBUG [envfile] Using network: 'default' 2025-02-11 08:53:03,357 DEBUG [envfile] Detected os: 'linux' 2025-02-11 08:53:03,357 DEBUG [envfile] Detected machine: 'x86_64' 2025-02-11 08:53:03,357 DEBUG [envfile] Using provider: 'minikube' 2025-02-11 08:53:03,357 DEBUG [envfile] Using driver: 'kvm2' 2025-02-11 08:53:03,357 DEBUG [envfile] Using network: 'default' 2025-02-11 08:53:03,357 DEBUG [envfile] Detected os: 'linux' 2025-02-11 08:53:03,357 DEBUG [envfile] Detected machine: 'x86_64' 2025-02-11 08:53:03,357 DEBUG [envfile] Using provider: 'minikube' 2025-02-11 08:53:03,357 DEBUG [envfile] Using driver: 'kvm2' 2025-02-11 08:53:03,357 DEBUG [envfile] Using network: 'default'
Can be fixed by a cached function discovering and logging the information. https://docs.python.org/3/library/functools.html#functools.cache
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When parsing environment file we need to detect the os an architecture. However we do this once per profile instead of once per environment file:
Can be fixed by a cached function discovering and logging the information.
https://docs.python.org/3/library/functools.html#functools.cache
The text was updated successfully, but these errors were encountered: