Skip to content

Commit

Permalink
Use dict instead of str
Browse files Browse the repository at this point in the history
fix yaml entry for XRD2
  • Loading branch information
srp3rd committed Mar 22, 2024
1 parent 8204b68 commit 289b443
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion etc/ingestd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rses:
rucio_prefix: root://xrd1:1094//rucio
fs_prefix: file:///rucio/disks/xrd1/rucio
XRD2:
rucio_prefix: root://xrd2:1095//rucio/test
rucio_prefix: root://xrd2:1095//rucio
fs_prefix: file:///rucio/disks/xrd2/rucio
XRD3:
rucio_prefix: root://xrd3:1096//rucio
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ctrl/ingestd/ingestd.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def process(self):
logging.info(e)
continue
rubin_butler = message.get_rubin_butler()
sidecar = message.get_rubin_sidecar_str()
sidecar = message.get_rubin_sidecar_dict()
logging.debug(f"{message=} {rubin_butler=} {sidecar=}")

if rubin_butler is None:
Expand Down

0 comments on commit 289b443

Please sign in to comment.