PaulW commented on issue #4636: [AIRFLOW-3737] Kubernetes executor cannot 
handle long dag/task names
URL: https://github.com/apache/airflow/pull/4636#issuecomment-475332071
 
 
   Is that not a part of the definition of `cases`?
   
   ```    def _cases(self):
           cases = [
               ("my_dag_id", "my-task-id"),
               ("my.dag.id", "my.task.id"),
               ("MYDAGID", "MYTASKID"),
               ("my_dag_id", "my_task_id"),
               ("mydagid" * 200, "my_task_id" * 200)
           ]
   
           cases.extend([
               (self._gen_random_string(seed, 200), 
self._gen_random_string(seed, 200))
               for seed in range(100)
           ])
   
           return cases```
   
   Specifically `("mydagid" * 200, "my_task_id" * 200)`?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to