Code Monkey home page Code Monkey logo

Comments (4)

gengkeye avatar gengkeye commented on September 6, 2024 1

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

from coco.

wufeiqun avatar wufeiqun commented on September 6, 2024

command_queue.put(data)

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

from coco.

wutongjie23hao avatar wutongjie23hao commented on September 6, 2024

@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,导致的错误。

from coco.

jumping avatar jumping commented on September 6, 2024

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

from coco.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.