Skip to content

Commit

Permalink
Fix clear introspection signature cache
Browse files Browse the repository at this point in the history
PR-URL: #1753
  • Loading branch information
tshemsedinov committed Jul 5, 2022
1 parent ba5265d commit 66c9555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased][unreleased]

- Fix clear introspection signature cache

## [3.0.0-alpha.1][] - 2022-06-25

- Worker-based multitenancy implementation
Expand Down
2 changes: 2 additions & 0 deletions lib/interfaces.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ class Interfaces extends Cache {
if (methods) delete methods[name];
const internalInterface = this.application.sandbox.api[iname];
if (internalInterface) delete internalInterface[name];
const cache = this.signatures[interfaceName];
if (cache) delete cache[name];
}

async change(filePath) {
Expand Down

0 comments on commit 66c9555

Please sign in to comment.