Skip to content

Make sure we use python from /usr/local environment in crontab proxy renewal #1588

New issue

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/pypi/wmagent/bin/manage
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

### The main manage script for WMAgent
WMCoreVersion=$(python -c "from WMCore import __version__ as WMCoreVersion; print(WMCoreVersion)")
WMCoreVersion=$(/usr/local/bin/python -c "from WMCore import __version__ as WMCoreVersion; print(WMCoreVersion)")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@khurtado this may provide a solution for some containers, but will break many things in the virtual environment and for T0.

Could we avoid using hardcoded && absolute paths in our setups. we have a very well defined environment now and we must always start from the root of the WMAgent deployment, which is referred through: the $WMA_DEPLOY_DIR variable.


# Load common definitions and environment:
source $WMA_DEPLOY_DIR/bin/manage-common.sh
Expand Down