This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new 964b8d2 define host type
964b8d2 is described below
commit 964b8d258bd1e5e8eb345c8a2a2ac6341c25e197
Author: Daniel Gruno <[email protected]>
AuthorDate: Tue Jun 8 13:26:19 2021 +0200
define host type
This should ideally be defined in the local instantiation, but we'll
sort that later. This fixes the last part of #35.
---
server/plugins/session.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/server/plugins/session.py b/server/plugins/session.py
index e0e967d..f196c7e 100644
--- a/server/plugins/session.py
+++ b/server/plugins/session.py
@@ -68,6 +68,7 @@ class SessionObject:
credentials: typing.Optional[SessionCredentials]
database: typing.Optional[plugins.database.Database]
remote: str
+ host: str
server: plugins.server.BaseServer
def __init__(self, server: plugins.server.BaseServer, **kwargs):