Skip to content

Commit

Permalink
Fixed target path missing from _transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
nmassey001 committed Oct 1, 2024
1 parent 2777e66 commit 8883a12
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nlds_processors/transferers/get_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ def _transfer_files(
rk_origin: str,
body_json: Dict[str, Any],
access_key: str,
secret_key: str
secret_key: str,
target_path: str
):
# build the routing keys
rk_complete = ".".join([rk_origin, RK.TRANSFER_GET, RK.COMPLETE])
Expand Down Expand Up @@ -254,7 +255,8 @@ def transfer(
rk_origin=rk_origin,
body_json=body_json,
access_key=access_key,
secret_key=secret_key
secret_key=secret_key,
target_path=target_path
)

# Send whatever remains after all items have been (attempted to be) put
Expand Down

0 comments on commit 8883a12

Please sign in to comment.