Skip to content

Commit 2d08a7b

Browse files
committed
Disable statuslist revocation 2021 for now
1 parent a2062f0 commit 2d08a7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/src/admin/IssueCredential.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ export default {
143143
credentialToIssue['@context'] = credentialToIssue['@context'][0]
144144
credentialToIssue['type'] = credentialToIssue['type'].find(t => t !== "VerifiableCredential")
145145
credentialToIssue['expirationDate'] = new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * this.daysValid).toISOString()
146-
credentialToIssue.withStatusList2021Revocation = true
146+
// disable statusListRevocation2021 for now, causes issues on MS SQL Server
147+
//credentialToIssue.withStatusList2021Revocation = true
147148
this.fetchError = undefined
148149
this.$api.post('api/proxy/internal/vcr/v2/issuer/vc', credentialToIssue)
149150
.then(issuedCredential => {

0 commit comments

Comments
 (0)