(self, t)
| 91 | self._data += "&{}={}".format(key, val) |
| 92 | |
| 93 | def complete(self, t): |
| 94 | t = ccat.newTransaction(_(self._mtype), _(self._mname)) |
| 95 | try: |
| 96 | t.setStatus(t, _(self._status)) |
| 97 | t.setTimestamp(t, self._time) |
| 98 | t.setDurationInMillis(t, self._duration_ms) |
| 99 | t.addData(t, _(self._data)) |
| 100 | finally: |
| 101 | t.complete(t) |
| 102 | |
| 103 | @property |
| 104 | def _duration_ms(self): |
nothing calls this directly
no test coverage detected