Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix main bittensor #102

Merged
merged 3 commits into from
Nov 6, 2024
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
4 changes: 2 additions & 2 deletions cortext/dendrite.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ async def call_stream(
# Preprocess synapse for making a request
synapse: StreamPrompting = self.preprocess_synapse_for_request(target_axon, synapse, timeout) # type: ignore
max_try = 0
timeout = aiohttp.ClientTimeout(total=100, connect=timeout, sock_connect=timeout, sock_read=timeout)
timeout = aiohttp.ClientTimeout(total=timeout, connect=10, sock_connect=10, sock_read=10)
connector = aiohttp.TCPConnector(limit=200)
session = aiohttp.ClientSession(timeout=timeout, connector=connector)
try:
while max_try < 3:
while max_try < 2:
async with session.post(
url,
headers=synapse.to_headers(),
Expand Down
3 changes: 0 additions & 3 deletions validators/weight_setter.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,9 +599,6 @@ async def process_queries_from_database(self):
if not self.is_epoch_end():
bt.logging.debug("no end of epoch. so continue...")
continue
if not self.synthetic_task_done:
bt.logging.debug("wait for synthetic tasks to complete.")
continue

bt.logging.info(f"start scoring process...")

Expand Down
Loading