lsst-ctrl-bps-htcondor 29.2025.3700__py3-none-any.whl → 29.2025.3800__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -705,16 +705,16 @@ def _create_job(subdir_template, cached_values, generic_workflow, gwjob, out_pre
705
705
 
706
706
  htc_job_cmds.update(_translate_job_cmds(cached_values, generic_workflow, gwjob))
707
707
 
708
- # job stdout, stderr, htcondor user log.
708
+ # Combine stdout and stderr to reduce the number of files.
709
709
  for key in ("output", "error"):
710
710
  if cached_values["overwriteJobFiles"]:
711
- htc_job_cmds[key] = f"{gwjob.name}.$(Cluster).{key[:3]}"
711
+ htc_job_cmds[key] = f"{gwjob.name}.$(Cluster).out"
712
712
  else:
713
- htc_job_cmds[key] = f"{gwjob.name}.$(Cluster).$$([NumJobStarts ?: 0]).{key[:3]}"
713
+ htc_job_cmds[key] = f"{gwjob.name}.$(Cluster).$$([NumJobStarts ?: 0]).out"
714
714
  _LOG.debug("HTCondor %s = %s", key, htc_job_cmds[key])
715
715
 
716
716
  key = "log"
717
- htc_job_cmds[key] = f"{gwjob.name}.$(Cluster).{key[:3]}"
717
+ htc_job_cmds[key] = f"{gwjob.name}.$(Cluster).{key}"
718
718
  _LOG.debug("HTCondor %s = %s", key, htc_job_cmds[key])
719
719
 
720
720
  htc_job_cmds.update(
@@ -530,7 +530,7 @@ def htc_write_condor_file(
530
530
  print(f"{key}={value}", file=fh)
531
531
  for key in ["output", "error", "log"]:
532
532
  if key not in job:
533
- filename = f"{job_name}.$(Cluster).${key[:3]}"
533
+ filename = f"{job_name}.$(Cluster).{'out' if key != 'log' else key}"
534
534
  print(f"{key}={filename}", file=fh)
535
535
 
536
536
  if job_attrs is not None:
@@ -194,8 +194,9 @@ class Provisioner:
194
194
  "getenv": "True",
195
195
  }
196
196
  cmds |= {
197
- stream: str(job.subfile.with_suffix(f".$(Cluster).{stream[:3]}"))
198
- for stream in ("output", "error", "log")
197
+ "output": str(job.subfile.with_suffix(".$(Cluster).out")),
198
+ "error": str(job.subfile.with_suffix(".$(Cluster).out")),
199
+ "log": str(job.subfile.with_suffix(".$(Cluster).log")),
199
200
  }
200
201
  job.add_job_cmds(cmds)
201
202
 
@@ -1,2 +1,2 @@
1
1
  __all__ = ["__version__"]
2
- __version__ = "29.2025.3700"
2
+ __version__ = "29.2025.3800"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lsst-ctrl-bps-htcondor
3
- Version: 29.2025.3700
3
+ Version: 29.2025.3800
4
4
  Summary: HTCondor plugin for lsst-ctrl-bps.
5
5
  Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
6
6
  License: BSD 3-Clause License
@@ -0,0 +1,19 @@
1
+ lsst/ctrl/bps/htcondor/__init__.py,sha256=1gTmOVLJILvBqgqHVECo8uqoX8e4fiTeH_dHBUXgDvY,1417
2
+ lsst/ctrl/bps/htcondor/final_post.sh,sha256=chfaQV6Q7rGsK-8Hx58ch52m-PofvBanrl7VwCssHec,248
3
+ lsst/ctrl/bps/htcondor/handlers.py,sha256=2gM3Ac00in4ob9ckcP331W1LSEjs9UDKIqt4MULA4bg,11196
4
+ lsst/ctrl/bps/htcondor/htcondor_config.py,sha256=c4lCiYEwEXFdxgbMfEkbDm4LrvkRMF31SqLtQqzqIV4,1523
5
+ lsst/ctrl/bps/htcondor/htcondor_service.py,sha256=TJOcbxq8CsbrRLvesLL5Up53uuUDckQXew0gB27_QT0,96469
6
+ lsst/ctrl/bps/htcondor/lssthtc.py,sha256=WUkzgWrDHuis90vWU1YMHLWXnbGHcvFK7ZDCr9NKTBs,80537
7
+ lsst/ctrl/bps/htcondor/provisioner.py,sha256=DxhCOCpqyBXIBR2m8VL_FwaDMr2scQIOe8ArWjgQ_Ls,7929
8
+ lsst/ctrl/bps/htcondor/version.py,sha256=1tuAAU5Re7MRhtcbYlCODj58a79T6z8ie3-QgPCtLgE,55
9
+ lsst/ctrl/bps/htcondor/etc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ lsst/ctrl/bps/htcondor/etc/htcondor_defaults.yaml,sha256=C6DKJKmKFKczukpXVXev9u1-vmv2IcgcdtjTtgJWDQM,1561
11
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/licenses/COPYRIGHT,sha256=Lc6NoAEFQ65v_SmtS9NwfHTOuSUtC2Umbjv5zyowiQM,61
12
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
13
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
14
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
15
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/METADATA,sha256=zPk0MOG4ecG5OPpxe5fyHWo5coKUQDqKsjJUBrRhlx4,2139
16
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
18
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
19
+ lsst_ctrl_bps_htcondor-29.2025.3800.dist-info/RECORD,,
@@ -1,19 +0,0 @@
1
- lsst/ctrl/bps/htcondor/__init__.py,sha256=1gTmOVLJILvBqgqHVECo8uqoX8e4fiTeH_dHBUXgDvY,1417
2
- lsst/ctrl/bps/htcondor/final_post.sh,sha256=chfaQV6Q7rGsK-8Hx58ch52m-PofvBanrl7VwCssHec,248
3
- lsst/ctrl/bps/htcondor/handlers.py,sha256=2gM3Ac00in4ob9ckcP331W1LSEjs9UDKIqt4MULA4bg,11196
4
- lsst/ctrl/bps/htcondor/htcondor_config.py,sha256=c4lCiYEwEXFdxgbMfEkbDm4LrvkRMF31SqLtQqzqIV4,1523
5
- lsst/ctrl/bps/htcondor/htcondor_service.py,sha256=WKN6bC5cJu8X9UpN5DNMDxb8V0gBOWCthvFyEWUkU7s,96467
6
- lsst/ctrl/bps/htcondor/lssthtc.py,sha256=MOxY30jCwbW1efgVcWtN4x13OO8monW95t6IidDf86Y,80515
7
- lsst/ctrl/bps/htcondor/provisioner.py,sha256=hPN8YJUtwNHQylw68kfskF1S2vCeQvztF8W0d_QKqqM,7851
8
- lsst/ctrl/bps/htcondor/version.py,sha256=AQOxvPBwPILItheZOADktYgvye1bfruQzhiAhgZby0A,55
9
- lsst/ctrl/bps/htcondor/etc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- lsst/ctrl/bps/htcondor/etc/htcondor_defaults.yaml,sha256=C6DKJKmKFKczukpXVXev9u1-vmv2IcgcdtjTtgJWDQM,1561
11
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/licenses/COPYRIGHT,sha256=Lc6NoAEFQ65v_SmtS9NwfHTOuSUtC2Umbjv5zyowiQM,61
12
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/licenses/LICENSE,sha256=pRExkS03v0MQW-neNfIcaSL6aiAnoLxYgtZoFzQ6zkM,232
13
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/licenses/bsd_license.txt,sha256=7MIcv8QRX9guUtqPSBDMPz2SnZ5swI-xZMqm_VDSfxY,1606
14
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/licenses/gpl-v3.0.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
15
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/METADATA,sha256=9GSauHRgN1yzHi6a5mqe_Gh1ckTDfkeyn_VCo9SOA9w,2139
16
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/top_level.txt,sha256=eUWiOuVVm9wwTrnAgiJT6tp6HQHXxIhj2QSZ7NYZH80,5
18
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
19
- lsst_ctrl_bps_htcondor-29.2025.3700.dist-info/RECORD,,