Skip to content

Commit

Permalink
Merge pull request #2395 from CSC-UW/job_kwargs_zarr
Browse files Browse the repository at this point in the history
Pass job_kwargs to ZarrRecordingExtractor.write_recording
  • Loading branch information
alejoe91 authored Jan 11, 2024
2 parents 2e17f20 + 70840c8 commit c5af400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spikeinterface/core/baserecording.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def _save(self, format="binary", **save_kwargs):

zarr_path = kwargs.pop("zarr_path")
storage_options = kwargs.pop("storage_options")
ZarrRecordingExtractor.write_recording(self, zarr_path, storage_options, **kwargs)
ZarrRecordingExtractor.write_recording(self, zarr_path, storage_options, **kwargs, **job_kwargs)
cached = ZarrRecordingExtractor(zarr_path, storage_options)

elif format == "nwb":
Expand Down

0 comments on commit c5af400

Please sign in to comment.