Skip to content

Commit

Permalink
Fixes a bug where extensions emulator was not appearing in the regist…
Browse files Browse the repository at this point in the history
…ry (#5242)

* Fixes a bug where extensions emualtor was not appearing in the registry

* changelog
  • Loading branch information
joehan committed Nov 15, 2022
1 parent 95799e1 commit d6871aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -3,4 +3,5 @@
- Fixes gzipped file handling in Storage Emulator.
- Add support for object list using certain Admin SDKs (#5208)
- Fixes source token expiration issue by acquiring new source token upon expiration.
- Fix bug where emulated event triggered function broke in debug mode (#5211)
- Fixes bug where emulated event triggered function broke in debug mode (#5211)
- Fixes bug that caused the Extensions Emulator to always appear to be inactive in the Emulator UI.
2 changes: 1 addition & 1 deletion src/emulator/extensionsEmulator.ts
Expand Up @@ -67,7 +67,7 @@ export class ExtensionsEmulator implements EmulatorInstance {
"Extensions Emulator is running but Functions emulator is not. This should never happen."
);
}
return functionsEmulator.getInfo();
return { ...functionsEmulator.getInfo(), name: this.getName() };
}

public getName(): Emulators {
Expand Down

0 comments on commit d6871aa

Please sign in to comment.