We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4f0d9f commit 221249eCopy full SHA for 221249e
airflow/providers/amazon/aws/sensors/dynamodb.py
@@ -84,7 +84,9 @@ def poke(self, context: Context) -> bool:
84
try:
85
self.log.info("Response: %s", response)
86
self.log.info("Want: %s = %s", self.attribute_name, self.attribute_value)
87
- self.log.info("Got: {response['Item'][self.attribute_name]} = %s", self.attribute_value)
+ self.log.info(
88
+ "Got: {response['Item'][self.attribute_name]} = %s", response["Item"][self.attribute_name]
89
+ )
90
return response["Item"][self.attribute_name] == self.attribute_value
91
except KeyError:
92
return False
0 commit comments