Add Task.__get_master_process_id

This commit is contained in:
allegroai 2021-06-01 00:18:01 +03:00
parent 5ce5035541
commit ba1b8c403b

View File

@ -2170,6 +2170,15 @@ class Task(IdObjectBase, AccessMixin, SetupUploadMixin):
return None
return master_task_id[1]
@classmethod
def __get_master_process_id(cls):
# type: () -> Optional[str]
master_task_id = PROC_MASTER_ID_ENV_VAR.get().split(':')
# we could not find a task ID, revert to old stub behaviour
if len(master_task_id) < 2 or not master_task_id[1]:
return None
return master_task_id[0]
@classmethod
def __is_subprocess(cls):
# type: () -> bool