Skip to content

Commit cd9c177

Browse files
authored
Send disableFreeSan property as int
1 parent 36e7e81 commit cd9c177

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

xolphin/certificate_requests/create_certificate_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def toDict(self):
2929
'years': self.years,
3030
'csr': self.csr,
3131
'dcvType': self.dcv_type,
32-
'disableFreeSan': self.disable_free_san,
32+
'disableFreeSan': int(self.disable_free_san), # int case is a workaround, booleans don't work here.
3333
}
3434

3535
if len(self.subject_alternative_names) > 0: result['subjectAlternativeNames'] = ','.join(self.subject_alternative_names)

0 commit comments

Comments
 (0)