Skip to content

Commit

Permalink
Merge pull request #1480 from dandi/move-auth
Browse files Browse the repository at this point in the history
move: Immediately authenticate client after creation
  • Loading branch information
yarikoptic committed Aug 12, 2024
2 parents e861149 + 9af7226 commit 5faa18a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dandi/move.py
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,7 @@ def move(
raise TypeError("`dandiset` must be a Path when work_on='both'")
local_ds, subpath = find_dandiset_and_subpath(dandiset)
client = DandiAPIClient.for_dandi_instance(dandi_instance)
client.dandi_authenticate()
stack.enter_context(client)
remote_ds = client.get_dandiset(
local_ds.identifier, version_id="draft", lazy=False
Expand All @@ -833,6 +834,7 @@ def move(
if not isinstance(url, DandisetURL):
raise ValueError("URL does not point to a Dandiset")
client = url.get_client()
client.dandi_authenticate()
stack.enter_context(client)
rds = url.get_dandiset(client, lazy=False)
assert rds is not None
Expand All @@ -841,6 +843,7 @@ def move(
else:
local_ds, subpath = find_dandiset_and_subpath(dandiset)
client = DandiAPIClient.for_dandi_instance(dandi_instance)
client.dandi_authenticate()
stack.enter_context(client)
remote_ds = client.get_dandiset(
local_ds.identifier, version_id="draft", lazy=False
Expand All @@ -866,8 +869,6 @@ def move(
if not plan:
lgr.info("Nothing to move")
return
if not dry_run and client is not None:
client.dandi_authenticate()
if devel_debug:
for gen in mover.process_moves_debug(plan, dry_run):
for r in gen:
Expand Down

0 comments on commit 5faa18a

Please sign in to comment.