Error 141 on run cloud functions

Hi, the watchEthAddress, watchBscAddress and watchPolygonAddress cloud functions have stopped working.

const moralis = require('moralis/node');

await moralis.start({ serverUrl, appId, masterKey });

await this.moralis.Cloud.run(watchMethod, {
  address: address
}, {
  useMasterKey: true
})

In response get an error:

{
  "message": {
    "status": 502,
    "headers": {
      "x-powered-by": "Express",
      "access-control-allow-origin": "*",
      "content-type": "application/json; charset=utf-8",
      "content-length": "24",
      "etag": "W/\"18-py7kky+nYw+KpM//zLTacYk1OLw\"",
      "x-response-time": "16.592ms",
      "date": "Wed, 01 Feb 2023 13:01:41 GMT",
      "connection": "close"
    },
    "buffer": {
      "type": "Buffer",
      "data": [
        123,
        34,
        101,
        114,
        114,
        111,
        114,
        34,
        58,
        116,
        114,
        117,
        101,
        44,
        34,
        100,
        97,
        116,
        97,
        34,
        58,
        123,
        125,
        125
      ]
    },
    "text": "{\"error\":true,\"data\":{}}",
    "data": {
      "error": true,
      "data": {}
    }
  },
  "code": 141
}

Parse server logs:

Moralis server url:
https://vwwd1b9tmax0.grandmoralis.com:2053/server

I restarted coreservices now on that server, you can try again.

You can also use streams api now to get real time transactions for a watched address.

Thanks, functions have earned!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.