We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a03190 commit 8cc6e57Copy full SHA for 8cc6e57
newrelic/common/agent_http.py
@@ -571,7 +571,7 @@ class DeveloperModeClient(SupportabilityMixin, BaseClient):
571
u"error_beacon": u"fake-jserror.newrelic.com",
572
u"apdex_t": 0.5,
573
u"encoding_key": u"1111111111111111111111111111111111111111",
574
- u'entity_guid': u'DEVELOPERMODEENTITYGUID',
+ u"entity_guid": u"DEVELOPERMODEENTITYGUID",
575
u"agent_run_id": u"1234567",
576
u"product_level": 50,
577
u"trusted_account_ids": [12345],
@@ -653,7 +653,7 @@ def send_request(
653
654
if result[0] == 200:
655
agent_method = params["method"]
656
- self.payload[agent_method] = payload
+ self.payload[agent_method] = json_decode(payload.decode("utf-8"))
657
658
return result
659
0 commit comments