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

CSV field limit #44

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions cert_tools/instantiate_v2_certificate_batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ def get_template(config):


def instantiate_batch(config):
if config.csv_field_limit is not None:
print("csv_field_limit set to ", config.csv_field_limit)
csv.field_size_limit(config.csv_field_limit)

recipients = get_recipients_from_roster(config)
template = get_template(config)
use_identities = config.filename_format == "certname_identity"
Expand Down Expand Up @@ -139,6 +143,7 @@ def get_config():
p.add_argument('--roster', type=str, help='roster file name')
p.add_argument('--filename_format', type=str, help='how to format certificate filenames (one of certname_identity or uuid)')
p.add_argument('--no_clobber', action='store_true', help='whether to overwrite existing certificates')
p.add_argument('--csv_field_limit', type=str, help='csv field limit')
args, _ = p.parse_known_args()
args.abs_data_dir = os.path.abspath(os.path.join(cwd, args.data_dir))

Expand Down