Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix broken docs link for record_metadata page #1703

Merged
merged 1 commit into from
May 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions singer_sdk/sinks/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def _add_sdc_metadata_to_record(
"""Populate metadata _sdc columns from incoming record message.

Record metadata specs documented at:
https://sdk.meltano.com/en/latest/implementation/record_metadata.md
https://sdk.meltano.com/en/latest/implementation/record_metadata.html

Args:
record: Individual record in the stream.
Expand All @@ -251,7 +251,7 @@ def _add_sdc_metadata_to_schema(self) -> None:
"""Add _sdc metadata columns.

Record metadata specs documented at:
https://sdk.meltano.com/en/latest/implementation/record_metadata.md
https://sdk.meltano.com/en/latest/implementation/record_metadata.html
"""
properties_dict = self.schema["properties"]
for col in {
Expand All @@ -271,7 +271,7 @@ def _remove_sdc_metadata_from_schema(self) -> None:
"""Remove _sdc metadata columns.

Record metadata specs documented at:
https://sdk.meltano.com/en/latest/implementation/record_metadata.md
https://sdk.meltano.com/en/latest/implementation/record_metadata.html
"""
properties_dict = self.schema["properties"]
for col in {
Expand All @@ -288,7 +288,7 @@ def _remove_sdc_metadata_from_record(self, record: dict) -> None:
"""Remove metadata _sdc columns from incoming record message.

Record metadata specs documented at:
https://sdk.meltano.com/en/latest/implementation/record_metadata.md
https://sdk.meltano.com/en/latest/implementation/record_metadata.html

Args:
record: Individual record in the stream.
Expand Down