Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cwms/timeseries/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,8 @@ def store_timeseries(
for chunk in chunks:
future = executor.submit(
api.post, # The function to execute
endpoint, # The chunk of data to store
data,
endpoint,
chunk, # The chunk of data to store
params,
)
futures.append(future) # Add the future to the list
Expand Down