Skip to content

Commit 9afaa0b

Browse files
Merge pull request #275 from tigergraph/fix_requestid
fix key change for 4.2.0
2 parents 5c44f0a + 08dcae1 commit 9afaa0b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyTigerGraph/common/base.py

+3
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,9 @@ def _parse_req(self, res, jsonResponse, strictJson, skipCheck, resKey):
348348

349349
return res
350350

351+
if resKey not in res:
352+
resKey = resKey.replace("_", "")
353+
logger.info("Removed _ from resKey")
351354
if logger.level == logging.DEBUG:
352355
logger.debug("return: " + str(res[resKey]))
353356
logger.info("exit: _req (resKey)")

0 commit comments

Comments
 (0)