Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
5秒以上かかるRESTwsを呼び出していますが、Promise応答のタイムアウトが発生しています。この時間を5秒より長くするにはどうすればよいですか?
このメソッドのタイムアウトに対応するpromiseのgetメソッドにLongを渡すことができます。例えば:
promise.get(120000L);
getメソッドに2分のタイムアウトを設定します。