Cache the job information
(self, jid, id_, ret, fun)
| 943 | yield ret |
| 944 | |
| 945 | def cache_job(self, jid, id_, ret, fun): |
| 946 | """ |
| 947 | Cache the job information |
| 948 | """ |
| 949 | self.returners["{}.returner".format(self.opts["master_job_cache"])]( |
| 950 | {"jid": jid, "id": id_, "return": ret, "fun": fun} |
| 951 | ) |
| 952 | |
| 953 | def run(self, jid=None): |
| 954 | """ |