3
從AppEngine Javadoc API讀取TaskOptions和Queue後,我無法找到在任務的有效負載超過100KB的限制時拋出哪個異常。我在哪裏可以找到這些信息?AppEngine任務隊列異常消息太大
更新:提交了more specific exception的請求。
從AppEngine Javadoc API讀取TaskOptions和Queue後,我無法找到在任務的有效負載超過100KB的限制時拋出哪個異常。我在哪裏可以找到這些信息?AppEngine任務隊列異常消息太大
更新:提交了more specific exception的請求。
找到我的答案看source code。
if (txn != null &&
bulkAddRequest.encodingSize() > QueueConstants.maxTransactionalRequestSizeBytes()) {
throw new IllegalArgumentException(
String.format("Transactional add may not be larger than %d bytes: %d bytes requested.",
QueueConstants.maxTransactionalRequestSizeBytes(),
bulkAddRequest.encodingSize()));
}