You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 25, 2024. It is now read-only.
console.log(`Couldn't update TXT record "${recordName}" to zone ${zoneName}. Reason is: ${getErrorString(error)}`);
166
+
thrownewError(`Couldn't update TXT record "${recordName}" to zone ${zoneName}`);
167
+
}
168
+
if(response.statusCode!==200){
169
+
console.log(`Couldn't update TXT record "${recordName}" to zone ${zoneName}. Reason is: status code ${response.statusCode} and body ${JSON.stringify(response.body)}`);
170
+
thrownewError(`Couldn't update TXT record "${recordName}" to zone ${zoneName}`);
171
+
}
172
+
console.log(`Update TXT record "${recordName}" finished successfully.`);
0 commit comments