You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The structure of the parameters has changed completely. The problems I found are related to some parameters but they might affect other parameters.
Some parameters have been renamed without warning example condor_admin_email has become admin_email
in init.pp to get the parameters from hiera one has to go through params.pp parameters not all the parameters in init.pp are assigned an htcondor::params::parameter in particular
$use_ssl_auth = $htcondor::use_ssl_auth,
$use_ssl_auth = $htcondor::params::use_ssl_auth,
needs to be corrected
several parameters has "undef" in the default. This doesn't seem to work correctly for all parameters. For example leave_job_in_queue doesn't pass the if statement in the template. undef is considered by Ruby as if the variable is defined. Replacing undef with false gives the right result
I have the impression the same might be for other variables.
Some parameters have disappeared? I cannot find where the worker_nodes array is used anymore and why if I remove a WN from there it still appears. Has it been renamed too? I'm not using the firewall as we have our own classes.
usex509userproxy also seems to have disappeared from the condor_config.local.
thanks
cheers
alessandra
The text was updated successfully, but these errors were encountered:
The structure of the parameters has changed completely. The problems I found are related to some parameters but they might affect other parameters.
Some parameters have been renamed without warning example condor_admin_email has become admin_email
in init.pp to get the parameters from hiera one has to go through params.pp parameters not all the parameters in init.pp are assigned an htcondor::params::parameter in particular
needs to be corrected
I have the impression the same might be for other variables.
Some parameters have disappeared? I cannot find where the worker_nodes array is used anymore and why if I remove a WN from there it still appears. Has it been renamed too? I'm not using the firewall as we have our own classes.
usex509userproxy also seems to have disappeared from the condor_config.local.
thanks
cheers
alessandra
The text was updated successfully, but these errors were encountered: