Skip to content

Commit

Permalink
Fix GitLab CI environment variable check (issue All-Hands-AI#7050) (A…
Browse files Browse the repository at this point in the history
…ll-Hands-AI#7052)

Co-authored-by: openhands <[email protected]>
  • Loading branch information
enyst and openhands-agent authored Mar 2, 2025
1 parent cf439fa commit 62750c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands/resolver/resolve_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
Expand Down

0 comments on commit 62750c0

Please sign in to comment.