(self, user, tags, type, productId)
| 20 | |
| 21 | @run_on_executor |
| 22 | def background_task(self, user, tags, type, productId): |
| 23 | try: |
| 24 | instasubprocess(user=user, tags=tags, type=type, productId=productId) |
| 25 | except: |
| 26 | print("error::background_task>>", sys.exc_info()[1]) |
| 27 | |
| 28 | @coroutine |
| 29 | def get(self): |