GAE 频道仪表板中的错误
我正在使用 JS 客户端的 Channel API 连接到 GAE 服务器。尽管我的通道客户端能够成功获取令牌并从服务器获取消息,但我仍然在 GAE 仪表板中收到以下错误消息。我不确定我是否错过了什么以及我是否应该担心。
URI - /_ah/channel/disconnected/
计数 - 955
% 错误 - 100%
URI - /_ah/channel/connected/
计数 - 943
% 错误 - 100%
任何人都可以指导我为什么会收到这些错误和错误吗?如何修复它们?
谢谢!
I am using Channel APIs from JS client to connect to GAE server. Even though my channel client is able to successfully get a token and get messages from the server, I keep on getting below error messages in GAE dashboard. I am not sure whether, what am I missing and whether I should be worried.
URI - /_ah/channel/disconnected/
Count - 955
% Errors - 100%
URI - /_ah/channel/connected/
Count - 943
% Errors - 100%
Can anyone please guide me on why am I getting these errors & how to fix them?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 app.yaml/appengine-web.xml 的入站服务中有channel_presence,那么当客户端连接到您创建的通道或从其断开连接时,就会发生对这些路径的请求。请参阅此处:
http://code.google.com/appengine/ docs/python/channel/overview.html#Tracking_Client_Connections_and_Disconnections
或此处:
http://code.google.com/appengine/docs/java/channel /overview.html#Tracking_Client_Connections_and_Disconnections
Requests to these paths occur when clients connect to or disconnect from the channels you create, if you have channel_presence in your inbound-services in app.yaml/appengine-web.xml. See here:
http://code.google.com/appengine/docs/python/channel/overview.html#Tracking_Client_Connections_and_Disconnections
or here:
http://code.google.com/appengine/docs/java/channel/overview.html#Tracking_Client_Connections_and_Disconnections