catalog-backend: include cache state in processing result hash
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
committed by
Johan Haals
parent
f0649d43e5
commit
c65552b3b7
@@ -167,7 +167,8 @@ export class DefaultCatalogProcessingEngine implements CatalogProcessingEngine {
|
||||
hashBuilder = hashBuilder
|
||||
.update(stableStringify({ ...result.completedEntity }))
|
||||
.update(stableStringify([...result.deferredEntities]))
|
||||
.update(stableStringify([...result.relations]));
|
||||
.update(stableStringify([...result.relations]))
|
||||
.update(stableStringify(result.state));
|
||||
}
|
||||
|
||||
const resultHash = hashBuilder.digest('hex');
|
||||
|
||||
Reference in New Issue
Block a user