Skip to content

Commit

Permalink
Fix syntax of records arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
anjackson committed Sep 18, 2023
1 parent 7ca6082 commit b95da26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/windex/mr_cdx_pywb_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def mapper_raw(self, warc_path, warc_uri):
output=cdx_file,
cdx11=True,
post_append=True, # Append POST args to allow POST request indexing
records = ["response", "revisit", "resource", "metadata", "conversion"] # Make sure conversion records are indexed too
records = "response,revisit,resource,metadata,conversion" # Make sure conversion records are indexed too
)

# The warc_path we get passed in is just the local temp filename.
Expand Down

0 comments on commit b95da26

Please sign in to comment.