Skip to content

Commit

Permalink
Remove HTTP server shutdown message (#1457)
Browse files Browse the repository at this point in the history
* remove shutdown msg
  • Loading branch information
blidd-google committed Aug 22, 2023
1 parent a70663b commit 3e7a4b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,2 +1,3 @@
- Remove HTTP server shutdown message. (#1457)
- Add features to task queue functions. (#1423)
- Add traces to V2 Firestore trigger logs. (#1440)
2 changes: 1 addition & 1 deletion src/bin/firebase-functions.ts
Expand Up @@ -54,7 +54,7 @@ const app = express();

function handleQuitquitquit(req: express.Request, res: express.Response) {
res.send("ok");
server.close(() => console.log("shutdown requested via /__/quitquitquit"));
server.close();
}

app.get("/__/quitquitquit", handleQuitquitquit);
Expand Down
2 changes: 1 addition & 1 deletion src/v2/options.ts
Expand Up @@ -260,7 +260,7 @@ export function getGlobalOptions(): GlobalOptions {
* Additional fields that can be set on any event-handling function.
*/
export interface EventHandlerOptions extends Omit<GlobalOptions, "enforceAppCheck"> {
/** Type of the event. Valid values are TODO */
/** Type of the event. Valid values are TODO */
eventType?: string;

/** TODO */
Expand Down

0 comments on commit 3e7a4b7

Please sign in to comment.