mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
fix: update correct troubleshooting doc url (#1510)
This commit is contained in:
parent
cc4879a973
commit
24750ba04f
@ -26,7 +26,7 @@ If you're running on Windows and having trouble, check out our [guide for Window
|
||||
### Symptoms
|
||||
|
||||
```
|
||||
Error creating controller. Please check Docker is running and visit `https://github.com/OpenDevin/OpenDevin/blob/main/docs/guides/Troubleshooting.md` for more debugging information.
|
||||
Error creating controller. Please check Docker is running and visit `https://opendevin.github.io/OpenDevin/modules/usage/troubleshooting` for more debugging information.
|
||||
```
|
||||
|
||||
```
|
||||
|
||||
@ -57,7 +57,7 @@ class DockerExecBox(Sandbox):
|
||||
self.docker_client = docker.from_env()
|
||||
except Exception as ex:
|
||||
logger.exception(
|
||||
'Error creating controller. Please check Docker is running and visit `https://github.com/OpenDevin/OpenDevin/blob/main/docs/guides/Troubleshooting.md` for more debugging information.', exc_info=False)
|
||||
'Error creating controller. Please check Docker is running and visit `https://opendevin.github.io/OpenDevin/modules/usage/troubleshooting` for more debugging information.', exc_info=False)
|
||||
raise ex
|
||||
|
||||
self.instance_id = sid if sid is not None else str(uuid.uuid4())
|
||||
|
||||
@ -67,7 +67,7 @@ class DockerSSHBox(Sandbox):
|
||||
self.docker_client = docker.from_env()
|
||||
except Exception as ex:
|
||||
logger.exception(
|
||||
'Error creating controller. Please check Docker is running and visit `https://github.com/OpenDevin/OpenDevin/blob/main/docs/guides/Troubleshooting.md` for more debugging information.', exc_info=False)
|
||||
'Error creating controller. Please check Docker is running and visit `https://opendevin.github.io/OpenDevin/modules/usage/troubleshooting` for more debugging information.', exc_info=False)
|
||||
raise ex
|
||||
|
||||
self.instance_id = sid if sid is not None else str(uuid.uuid4())
|
||||
|
||||
@ -156,7 +156,7 @@ class AgentUnit:
|
||||
except Exception as e:
|
||||
logger.exception(f'Error creating controller: {e}')
|
||||
await self.send_error(
|
||||
'Error creating controller. Please check Docker is running and visit `https://github.com/OpenDevin/OpenDevin/blob/main/docs/guides/Troubleshooting.md` for more debugging information..'
|
||||
'Error creating controller. Please check Docker is running and visit `https://opendevin.github.io/OpenDevin/modules/usage/troubleshooting` for more debugging information..'
|
||||
)
|
||||
return
|
||||
await self.init_done()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user