Skip to content

Commit

Permalink
fix(query-orchestrator): Correct handling for forceBuild flag, fix #7726
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Mar 13, 2024
1 parent 6fcaff4 commit dc8d2a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ export class PreAggregationLoader {
};
}

if (!this.waitForRenew) {
if (!this.waitForRenew && !this.forceBuild) {
const versionEntryByStructureVersion = versionEntries.byStructure[`${this.preAggregation.tableName}_${structureVersion}`];
if (versionEntryByStructureVersion) {
const targetTableName = this.targetTableName(versionEntryByStructureVersion);
Expand Down

0 comments on commit dc8d2a5

Please sign in to comment.