Commit cb8f09b9 authored by ibuler's avatar ibuler

[Merge] merge with dev

parents d8e33ab8 7c39885d
FROM registry.fit2cloud.com/jumpserver/python:v3 FROM registry.fit2cloud.com/jumpserver/python:v3
MAINTAINER Jumpserver Team <ibuler@qq.com> MAINTAINER Jumpserver Team <ibuler@qq.com>
COPY . /opt/coco COPY requirements /opt/coco/requirements
WORKDIR /opt/coco WORKDIR /opt/coco
RUN cd requirements && yum -y install $(cat rpm_requirements.txt) && \ RUN cd requirements && yum -y install $(cat rpm_requirements.txt) && \
pip install -r requirements.txt pip install -r requirements.txt
COPY . /opt/coco
VOLUME /opt/coco/logs VOLUME /opt/coco/logs
VOLUME /opt/coco/keys VOLUME /opt/coco/keys
......
...@@ -228,5 +228,5 @@ class WSProxy: ...@@ -228,5 +228,5 @@ class WSProxy:
def close(self): def close(self):
self.stop_event.set() self.stop_event.set()
self.child.close() self.child.close()
self.ws.on_logout(self.connection) self.ws.logout(self.connection)
logger.debug("Proxy {} closed".format(self)) logger.debug("Proxy {} closed".format(self))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment