RemoteParam Class

class htcondor2.RemoteParam(location)

The keys and values of this collections.abc.MutableMapping are the keys and values of the specified daemon’s configuration. Assigning to a key sets the “runtime” configuration for the corresponding HTCondor macro, which won’t take effect until the daemon has been reconfigured. See ENABLE_RUNTIME_CONFIG. Nonetheless, prior assignments will be reflected in subsequent lookups, but see refresh(), below.

Parameters

location (ClassAd) – A ClassAd with a MyAddress attribute, such as might be returned by htcondor2.Collector.locate().

refresh()

Rebuild the dictionary based on the current configuration of the daemon. Configuration values set by assigning to this dictionary do not become part of the current configuration until the daemon has been reconfigured; if you have not reconfigured the daemon, this method will result in a dictionary without those changes.