Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
samtstern committed Nov 9, 2019
1 parent e48725e commit 72b6ec2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/emulator/emulatorServer.ts
Expand Up @@ -11,7 +11,7 @@ export class EmulatorServer {
constructor(public instance: EmulatorInstance) {}

async start(): Promise<void> {
const { port, host } = this.instance.getInfo();
const { port, host } = this.instance.getInfo();
const portOpen = await controller.checkPortOpen(port, host);

if (!portOpen) {
Expand Down
4 changes: 3 additions & 1 deletion src/emulator/functionsEmulator.ts
Expand Up @@ -112,7 +112,9 @@ export class FunctionsEmulator implements EmulatorInstance {

// The URL for the function that the other emulators (Firestore, etc) use.
// TODO(abehaskins): Make the other emulators use the route below and remove this.
const backgroundFunctionRoute = `/functions/projects/${this.args.projectId}/triggers/:trigger_name`;
const backgroundFunctionRoute = `/functions/projects/${
this.args.projectId
}/triggers/:trigger_name`;

// The URL that the developer sees, this is the same URL that the legacy emulator used.
const httpsFunctionRoute = `/${this.args.projectId}/:region/:trigger_name`;
Expand Down

0 comments on commit 72b6ec2

Please sign in to comment.