We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36e7e81 commit cd9c177Copy full SHA for cd9c177
1 file changed
xolphin/certificate_requests/create_certificate_request.py
@@ -29,7 +29,7 @@ def toDict(self):
29
'years': self.years,
30
'csr': self.csr,
31
'dcvType': self.dcv_type,
32
- 'disableFreeSan': self.disable_free_san,
+ 'disableFreeSan': int(self.disable_free_san), # int case is a workaround, booleans don't work here.
33
}
34
35
if len(self.subject_alternative_names) > 0: result['subjectAlternativeNames'] = ','.join(self.subject_alternative_names)
0 commit comments