79077145

Date: 2024-10-11 07:24:49
Score: 2.5
Natty:
Report link

@vaibhav The answer of @Saxtheowl is correct you need to add the resto of the expected parameters edit

def custom_serialize_value(value):
    return json.dumps(value, cls=CustomJSONEncoder).encode('UTF-8')

to

def custom_serialize_value(value, key, task_id, dag_id, run_id, map_index):
    return json.dumps(value, cls=CustomJSONEncoder).encode('UTF-8')
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @vaibhav
  • User mentioned (0): @Saxtheowl
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Michael Groenewegen vd Weijden