having token in endpoint, and doing that setting in responsehandler.py leads to doubling param in subsequent call: url addr: https://my.rest.partner/getsomedata?start=$since10min$ url args: <none> responsehandler: myresphdl tokens.py: def since10min() responsehandler.py: def myresphdl() params[since10min] = "xx" --> next call calls https://my.rest.partner/getsomedata?start=10&start=20 leading to error from rest-peer also, if rest-peer throws error,the responsehandler never gets the chance to set the params in reststate. i solved this by having no tokens used, rest-peer throws error but i ignore it (tweak rest.py), set the responsehandler params and voila, next time it works is there a better way to achvieve same?
... View more