Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/server/services/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ export default class DeployService extends BaseService {
try {
// For now, we're just going to shell out and run the deploy
await deploy.reload();
await deploy.$fetchGraph('[build, deployable]');

/**
* For now, only run the CLI deploy step one time.
Expand Down Expand Up @@ -432,7 +433,7 @@ export default class DeployService extends BaseService {
logger.info(`[DEPLOY ${deploy?.uuid}] Restored Aurora cluster for ${deploy?.uuid}`);
return true;
} catch (e) {
logger.info(`[DEPLOY ${deploy?.uuid}] Aurora cluster restore for ${deploy?.uuid} failed with error: ${e}`);
logger.error(`[DEPLOY ${deploy?.uuid}] Aurora cluster restore for ${deploy?.uuid} failed with error: ${e}`);
await deploy.$query().patch({
status: DeployStatus.ERROR,
});
Expand Down