File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -494,6 +494,9 @@ def gather_upstream_tiffs(
494494 stream = True ,
495495 headers = {"Authorization" : f"Bearer { tokens [session_id ]} " },
496496 )
497+ (upstream_tiff_info .download_dir / tiff_path ).parent .mkdir (
498+ parents = True , exist_ok = True
499+ )
497500 with open (upstream_tiff_info .download_dir / tiff_path , "wb" ) as utiff :
498501 for chunk in tiff_data .iter_content (chunk_size = 32 * 1024 ** 2 ):
499502 utiff .write (chunk )
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ class Settings(BaseSettings):
8080app .include_router (murfey .server .api .mag_table .router )
8181
8282app .include_router (murfey .server .api .session_control .router )
83+ app .include_router (murfey .server .api .session_control .correlative_router )
8384app .include_router (murfey .server .api .session_control .spa_router )
8485app .include_router (murfey .server .api .session_control .tomo_router )
8586
You can’t perform that action at this time.
0 commit comments