Skip to content
Snippets Groups Projects
Commit b28c7da0 authored by Daniel Wagner-Hall's avatar Daniel Wagner-Hall
Browse files

Preserve version string in user agent

parent 8fc52bc5
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ class ServerConfig(Config): ...@@ -26,7 +26,7 @@ class ServerConfig(Config):
self.soft_file_limit = config["soft_file_limit"] self.soft_file_limit = config["soft_file_limit"]
self.daemonize = config.get("daemonize") self.daemonize = config.get("daemonize")
self.print_pidfile = config.get("print_pidfile") self.print_pidfile = config.get("print_pidfile")
self.user_agent_override = config.get("user_agent_override") self.user_agent_suffix = config.get("user_agent_suffix")
self.use_frozen_dicts = config.get("use_frozen_dicts", True) self.use_frozen_dicts = config.get("use_frozen_dicts", True)
self.listeners = config.get("listeners", []) self.listeners = config.get("listeners", [])
......
...@@ -67,9 +67,9 @@ class SimpleHttpClient(object): ...@@ -67,9 +67,9 @@ class SimpleHttpClient(object):
connectTimeout=15, connectTimeout=15,
contextFactory=hs.get_http_client_context_factory() contextFactory=hs.get_http_client_context_factory()
) )
self.user_agent = hs.config.user_agent_override self.user_agent = hs.version_string
if self.user_agent is None: if hs.config.user_agent_suffix:
self.user_agent = hs.version_string self.user_agent += " - " + hs.config.user_agent_suffix
def request(self, method, uri, *args, **kwargs): def request(self, method, uri, *args, **kwargs):
# A small wrapper around self.agent.request() so we can easily attach # A small wrapper around self.agent.request() so we can easily attach
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment