sparse-whale-87529
07/30/2025, 8:20 AMClientException: Job without shareIdentifier or schedulingPriority cannot be submitted to a job queue with fair share scheduling policy
Below is the code that I am using to test this.
from flytekitplugins.awsbatch import AWSBatchConfig
import flytekit as fl
config = AWSBatchConfig(
parameters={"schedulingPriority": "1"},
propagateTags=True,
tags={"hello": "world2"},
schedulingPriority=1
)
@fl.task(task_config=config)
def t1(a: int) -> str:
return str(a)