Hi Jaime, et al,
I am coming back with another question about the output of condor_userprio vs the python method getPriorities().
The second column in the output of condor_userprio is called "config quota".Â
Which one is it in the output of getPriorities()?
Here is one example:
# condor_userprio -grouprollup -allusers | grep group_ALICE.alice_pilot_multicore
group_ALICE.alice_pilot_multicore       Â0.25 ByQuota       Â100000.00   Â0     0.00 19486+14:4     Â0
>>> import htcondor
>>> n = htcondor.Negotiator()
>>> for p in n.getPriorities(True):
... Â Â if p['Name'] == 'group_ALICE.alice_pilot_multicore':
... Â Â Â Â print(p)
...
  [
    IsAccountingGroup = true;
    AccumulatedUsage = 0.0;
    AccountingGroup = "group_ALICE";
    WeightedAccumulatedUsage = 0.0;
    LastUsageTime = 0;
    BeginUsageTime = 1682516152;
    Priority = 0.0;
    Name = "group_ALICE.alice_pilot_multicore";
    PriorityFactor = 1.000000000000000E+05;
    ResourcesUsed = 0;
    Requested = 0.0;
    WeightedResourcesUsed = 0.0
  ]
I don't see that 0.25 in the classAd from the python method. What am I missing?Â
Thanks a lot in advance.Â
Cheers,
Jose