谷歌应用引擎抛出未知错误:' 4'突然间

时间:2015-10-26 00:00:23

标签: java google-app-engine

我在GAE上的基于Java的应用程序运行良好,但现在突然间我在gae上获得了这个例外但在本地工作得很好:

bool operator<(const simpleLink& that) const
{
  auto this2 = std::minmax( orig,      dest );
  auto that2 = std::minmax( that.orig, that.dest );

  return (this2.first != that2.first) 
       ? (this2.first  < that2.first)
       : (this2.second < that2.second);
}

任何指针都会受到高度赞赏!

谢谢,

2 个答案:

答案 0 :(得分:1)

有一个短暂的问题导致了这个错误。我们正在努力寻求永久性修复,这将在1.9.28中完成。

此问题为acknowledged and fixed,如App Engine的公共问题跟踪器中所述。

答案 1 :(得分:0)

您需要将app engine sdk版本更新到最新版本(1.9.27)。