0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Fixed Ghost boot errors being masked

- This was a total derp on my side, wanted to change the error message, not remove the error
This commit is contained in:
Hannah Wolfe 2022-02-11 10:21:45 +00:00
parent 56a8d21263
commit dabf143cae
No known key found for this signature in database
GPG key ID: AB586C3B5AE5C037

View file

@ -130,6 +130,7 @@ const getAdminAPIAgent = async () => {
});
} catch (error) {
error.message = `Unable to create test agent. ${error.message}`;
throw error;
}
};