Fix GitLab CI environment variable check (issue #7050) (#7052)

Co-authored-by: openhands <openhands@all-hands.dev>
This commit is contained in:
Engel Nyst 2025-03-02 21:33:07 +01:00 committed by GitHub
parent cf439fa89c
commit 62750c07e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -202,7 +202,7 @@ async def process_issue(
timeout=300,
)
if os.getenv('GITLAB_CI') == 'True':
if os.getenv('GITLAB_CI') == 'true':
sandbox_config.local_runtime_url = os.getenv(
'LOCAL_RUNTIME_URL', 'http://localhost'
)