We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eba8c99 commit d792551Copy full SHA for d792551
1 file changed
tap_github/repository_streams.py
@@ -1694,17 +1694,12 @@ class ReviewCommentReactionsStream(GitHubRestStream):
1694
state_partitioning_keys: ClassVar[list[str]] = ["repo", "org"]
1695
1696
def post_process(self, row: dict, context: Context | None = None) -> dict:
1697
- self.logger.info(f"Context: {context}")
1698
- self.logger.info(f"Unprocessed row: {row}")
1699
-
1700
row = super().post_process(row, context)
1701
- self.logger.info(f"Processed row: {row}")
1702
1703
if context:
1704
row["pull_request_url"] = context.get("pull_request_url")
1705
row["comment_id"] = context.get("comment_id")
1706
row["comment_url"] = context.get("comment_url")
1707
- self.logger.info(f"Post-Processed row: {row}")
1708
1709
return row
1710
0 commit comments