File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,8 @@ def serialize(self):
135
135
'attached_directories_dict' : self .attached_directories_dict ,
136
136
'launch_datetime' : self .launch_datetime ,
137
137
'label_file_list' : label_file_list ,
138
- 'member_list_ids' : self .member_list_ids
138
+ 'member_list_ids' : self .member_list_ids ,
139
+ 'tag_list' : self .tag_list
139
140
}
140
141
141
142
def new (self ,
@@ -159,6 +160,7 @@ def new(self,
159
160
single_copy_directories = [],
160
161
members_list_ids = [],
161
162
auto_launch = True ,
163
+ tag_list = [],
162
164
):
163
165
"""
164
166
@@ -193,6 +195,7 @@ def new(self,
193
195
job .label_schema_id = label_schema_id
194
196
job .attached_directories = []
195
197
job .member_list_ids = members_list_ids
198
+ job .tag_list = tag_list
196
199
197
200
if len (sync_directories ) == 0 and len (single_copy_directories ) == 0 :
198
201
raise ValueError (
You can’t perform that action at this time.
0 commit comments