We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04e3587 + 6357e86 commit d724475Copy full SHA for d724475
1 file changed
middleware/metadata_scraper/__init__.py
@@ -23,6 +23,8 @@ class MetadataScraperConfig(NamedTuple):
23
url: Annotated[str, "The sitemap URL of the research data repository to scrape"]
24
sitemap: Annotated[str, "The identifier of the sitemap parser to use"]
25
metadata: Annotated[Optional[str], "The identifier of the metadata extractor to use"] = None
26
+ commit: Annotated[Optional[bool],
27
+ "If set to false, the harvested metadata will not be committed to git"] = True
28
# Unfortunately it's not feasible to nest NamedTuple's, so we use a dict here
29
# instead of a HttpSessionConfig instance.
30
http_client: Annotated[Optional[Dict],
0 commit comments