Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/check-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:

- name: Install Bittensor SDK dependencies
working-directory: ${{ github.workspace }}/bittensor
run: uv pip install --system '.[dev]'
run: uv pip install --system '.[dev]' torch

- name: Clone async-substrate-interface repo
run: git clone https://github.com/opentensor/async-substrate-interface.git
Expand Down
3 changes: 2 additions & 1 deletion async_substrate_interface/utils/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ async def __call__(self, *args: Any, **kwargs: Any) -> Any:
future.set_result(result)
return result
except Exception as e:
future.set_exception(e)
self._inflight.pop(key, None)
future.cancel()
raise
finally:
self._inflight.pop(key, None)
Expand Down
Loading