Commit e6d158f7 authored by davelopez's avatar davelopez
Browse files

Fix incorrect request host in ASGI

parent 54c44b68
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -183,9 +183,7 @@ class GalaxyASGIRequest(GalaxyAbstractRequest):

    @property
    def host(self) -> str:
        client = self.__request.client
        assert client is not None
        return str(client.host)
        return self.__request.base_url.netloc


class GalaxyASGIResponse(GalaxyAbstractResponse):