Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

coco卡死 #15

Open
jackkeyang opened this issue Sep 4, 2017 · 4 comments
Open

coco卡死 #15

jackkeyang opened this issue Sep 4, 2017 · 4 comments
Labels

Comments

@jackkeyang
Copy link

使用xshell登录跳板机的资产。tail -f命令输出大量日志后ctrl+c退出时,终端卡死。

@wufeiqun
Copy link

wufeiqun commented Sep 4, 2017

command_queue.put(data)

注释掉这一行重启试试,会缓解一些, 但是这其实是一个设计上的问题

@ibuler ibuler added the bug label Sep 6, 2017
@wutongjie23hao
Copy link

@hellorocky @jackkeyang @ibuler 卡死的原因可能是因为获取资产的时候,g.user_service._auth没有,抛出异常,导致,抛出异常后,并没有结束当前的client_channel,然后就一直卡死状态,可以通过更改 jms的service.py文件,其中,
if not self._auth:
raise RequestError('Authentication required')
更改为:
if not self._auth:
result = FakeResponse()
return self.parse_result(result)
这会导致一个问题,就是获取资产的时候,可能出现空的情况,这个bug的根本原因是,app和rc的上下文只有push,在关闭或者断掉的时候,没有及时的pop,导致的错误。

@jumping
Copy link

jumping commented Apr 13, 2018

用ssh直接连接 coco端口,正常授权的服务器没有问题。当目标服务器授权出错,卡死。出现“Authentication failed.“

@gengkeye
Copy link

可以正常登录授权的服务器,但退出exit时卡死。

ibuler pushed a commit that referenced this issue Nov 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants