syedahsn commented on code in PR #32355:
URL: https://github.com/apache/airflow/pull/32355#discussion_r1260653821
##########
airflow/providers/amazon/aws/operators/eks.py:
##########
@@ -311,6 +331,80 @@ def execute(self, context: Context):
subnets=cast(List[str],
self.resources_vpc_config.get("subnetIds")),
)
+ def deferrable_create_cluster_next(self, context: Context, event:
dict[str, Any] = {}) -> None:
Review Comment:
hmm that's a good point. I guess I can set it to `None` and do a check for
`None` before indexing it i.e.
```
if event and event["status"]
```
Its going to be tedious to do it everywhere, but I don't see a better option
--
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]