We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4008488 + 296f76f commit f4d5ed6Copy full SHA for f4d5ed6
bittensor/core/subtensor.py
@@ -263,9 +263,10 @@ def _get_substrate(self, force: bool = False):
263
264
except InvalidStatus as error:
265
logging.critical(
266
- f"[red]You have reached the limit of simultaneous connections to the server.[/red]"
+ f"Error [red]'{error.response.reason_phrase}'[/red] with status code [red]{error.response.status_code}[/red]."
267
)
268
- raise InvalidStatus(error.response) from error
+ logging.debug(f"Server response is '{error.response}'.")
269
+ raise
270
271
@staticmethod
272
def config() -> "Config":
0 commit comments