Skip to content

Proxy-related issue #70

Open
Open
@ACParadox

Description

@ACParadox

Kept getting a 503 response when initializing LanguageTool (coming from _query_server).

It was weird because the same exact query would work using curl from the same location.

Turns out it was because of proxies. Normally they are not applied within our internal corporate network, only when querying outside it, but it seems in this case they were applied anyways.

It would be useful to have a configurable proxy settings in the config and just add the "proxies" param to the requests.get inside _query_server.

Ex. this worked out for my setup (in _query_server):
proxies = {
"http": None,
"https": None
}
with requests.get(url, params=params, timeout=self._TIMEOUT, proxies=proxies) as response:

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions