hussein-awala commented on issue #36203:
URL: https://github.com/apache/airflow/issues/36203#issuecomment-1859214239

   I just checked the code source for this operator and its hook. Did you try 
to provide `update_config=True` to your operator?
   > :param update_config: If True, Operator will update job configuration.  
(default: False)
   
   In the hook, if it's True, the hook will create or update the job 
configuration, but if it's False (the default value), the hook will create the 
job or get it if it exists without updating the configuration.
   ```python
               if self.update_config:
                   job_name = self.create_or_update_glue_job()
               else:
                   job_name = self.get_or_create_glue_job()
   ```


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to