APIバックエンドのアプリのリビジョン 'X'が 'Y'と同じではありません
Googleのアプリ-Engineの標準的な環境への私のJavaアプリケーションの展開後、私は次のバックエンド例外で直面:
要求URL:
/_ah/spi/BackendService.getApiConfigs
例外:として
com.google.api.server.spi.SystemService invokeServiceMethod: exception occurred while calling backend method (SystemService.java:398)
com.google.api.server.spi.response.BadRequestException: API backend's app revision '397417657720349940' not the same as expected '397211310482055273'
at com.google.api.server.spi.BackendService.getApiConfigs(BackendService.java:92)
at sun.reflect.GeneratedMethodAccessor58.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:42)
at com.google.api.server.spi.SystemService.invokeServiceMethod(SystemService.java:363)
at com.google.api.server.spi.SystemServiceServlet.execute(SystemServiceServlet.java:113)
at com.google.api.server.spi.SystemServiceServlet.doPost(SystemServiceServlet.java:71)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
...
結果私は新しく導入したアプリを使ってトラフィックを移行することはできません。
誰もが同じ問題に直面しましたか?どのように解決しましたか?
ありがとうございます。
私は[Endpoint v2 Beta API](https://cloud.google.com/endpoints/)を試したので同じ問題があります。新しいバージョンのCloud Endpointsを試してからv1にロールバックしましたか? – Mason
リパッケージされたもの(appengine内)を使用するために私の依存関係「jackson-binding」と「jackson-annotations」を削除し、私の問題を解決しました。 – Mason
こんにちは、私はエンドポイントV2を試していませんでした。 – Gefest