4-9 - Parsing Failed

4-9 - Parsing Failed

Possible Causes

Generally, it is due to parameter values not conforming to the rules, resulting in errors during conversion. For example:

  1. String timeoutString = httpMetadata.headers().getFirst(TripleHeaderEnum.SERVICE_TIMEOUT.getHeader());
  2. Long timeout = Long.parseLong(timeoutString);
  3. Long timeout = GrpcUtils.parseTimeoutToMills(timeoutString);
  4. invocation.put(CommonConstants.TIMEOUT_KEY, timeout);

Troubleshooting and Resolution Steps

Modify the corresponding configuration according to the key name indicated in the stack information to meet the conversion rules.

Feedback

Was this page helpful?

Yes No

Last modified September 30, 2024: Update & Translate Overview Docs (#3040) (d37ebceaea7)