Skip to content

Commit

Permalink
Don't require backup cert
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Rodriguez Baquero committed Oct 31, 2023
1 parent 257e3b3 commit 62e6d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container/shim/src/modules/registration.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function register(initial = false) {
const registerOptions = postOptions(body);

// If cert is not yet in the volume, register
if (!certExists || (!backupCertExists && NETWORK === "main")) {
if (!certExists) {
debug("First time registering or missing cert");
await handleMissingCert(registerOptions);
return;
Expand Down

0 comments on commit 62e6d14

Please sign in to comment.