RapidPE jobs failing by trying to use missing file
RapidPE jobs seems to be failing because they are trying to use a file that doesn't exist:
This tries to use a file config.d
in this directory, but this doesn't exist. Meanwhile a condor_config
does exist that I believe tries to redirect:
######################################################################
##
## condor_config
##
## This is the global configuration file for condor installed via
## conda. This file is designed to load the system configuration
## then modify as little as possible to set up paths to point at
## the conda environment.
##
## You probably don't want to modify this file, but rather add
## more custom settings into the conda-installed local configuration
## directory in ${CONDA_PREFIX}/etc/condor/config.d/.
##
######################################################################
## load system configuration first
SYSTEM_CONFIG_FILE = /etc/condor/condor_config
include ifexist : $(SYSTEM_CONFIG_FILE)
## override paths for conda
CONDA_RELEASE_DIR = /cvmfs/oasis.opensciencegrid.org/ligo/sw/conda/envs/igwn-py39-20221118
BIN = $(CONDA_RELEASE_DIR)/bin
LIB = $(CONDA_RELEASE_DIR)/lib/condor
INCLUDE = $(CONDA_RELEASE_DIR)/include/condor
LIBEXEC = $(CONDA_RELEASE_DIR)/lib/condor/libexec
SHARE = $(CONDA_RELEASE_DIR)/share/condor
## enable more local overrides
LOCAL_CONFIG_DIR = $(LOCAL_CONFIG_DIR) /cvmfs/oasis.opensciencegrid.org/ligo/sw/conda/envs/igwn-py39-20221118/etc/condor/config.d
Maybe we're missing a configuration value?