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.
1 parent e2add5c commit e59878aCopy full SHA for e59878a
openhands/runtime/impl/remote/remote_runtime.py
@@ -212,11 +212,9 @@ def _start_runtime(self):
212
plugins=self.plugins,
213
app_config=self.config,
214
)
215
- environment = {
216
- 'DEBUG': 'true'
217
- if self.config.debug or os.environ.get('DEBUG', 'false').lower() == 'true'
218
- else '',
219
- }
+ environment = {}
+ if self.config.debug or os.environ.get('DEBUG', 'false').lower() == 'true':
+ environment['DEBUG'] = 'true'
220
environment.update(self.config.sandbox.runtime_startup_env_vars)
221
start_request = {
222
'image': self.container_image,
0 commit comments