Skip to content

Commit 5b81591

Browse files
martastainCopilot
andauthored
Update backend/nebula/helpers/coalescer.py
Co-authored-by: Copilot <[email protected]>
1 parent 56d9d04 commit 5b81591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/nebula/helpers/coalescer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ async def __call__(
7171
*args: Any,
7272
**kwargs: Any,
7373
) -> T:
74-
key = _hash_args(func, args, kwargs)
74+
key = _hash_args(func, *args, **kwargs)
7575
async with self.lock:
7676
if key not in self.current_futures:
7777
self.current_futures[key] = asyncio.create_task(func(*args, **kwargs))

0 commit comments

Comments
 (0)