We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5319665 commit 5379f85Copy full SHA for 5379f85
1 file changed
middleware/metadata_scraper/__init__.py
@@ -23,6 +23,7 @@ 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], "If set to false, the harvedest metadata will not be commited to git"] = True
27
# Unfortunately it's not feasible to nest NamedTuple's, so we use a dict here
28
# instead of a HttpSessionConfig instance.
29
http_client: Annotated[Optional[Dict],
0 commit comments