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 7ffe922 commit daa2fd5Copy full SHA for daa2fd5
openhands-sdk/openhands/sdk/conversation/secret_source.py
@@ -45,7 +45,7 @@ class LookupSecret(SecretSource):
45
headers: dict[str, str] = Field(default_factory=dict)
46
47
def get_value(self):
48
- response = httpx.get(self.url, headers=self.headers)
+ response = httpx.get(self.url, headers=self.headers, timeout=30.0)
49
response.raise_for_status()
50
return response.text
51
0 commit comments