Skip to content

Commit

Permalink
Merge branch 'master' into samtstern-sdkconfig-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bkendall committed Oct 10, 2019
2 parents 33cdaf8 + a4d588d commit babf4d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
* Added support for managing the Realtime Database setting `strictTriggerValidation`.
* Fixes trigger parser to not rely on prototype methods (#1687).
* Fixes bug where standalone CLI would hang in the Android Studio integrated terminal.
4 changes: 3 additions & 1 deletion src/emulator/functionsEmulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,9 @@ export class FunctionsEmulator implements EmulatorInstance {
case "unidentified-network-access":
EmulatorLogger.log(
"WARN",
`Unknown network resource requested!\n - URL: "${systemLog.data.href}"`
`External network resource requested!\n - URL: "${
systemLog.data.href
}"\n - Be careful, this may be a production service.`
);
break;
case "functions-config-missing-value":
Expand Down
2 changes: 1 addition & 1 deletion standalone/firepit.js
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ function SetWindowTitle(title) {
if (isWindows) {
process.title = title;
} else {
process.stdout.write("\x1b]2;" + title + "\x1b\x5c");
process.stdout.write(String.fromCharCode(27) + "]0;" + title + String.fromCharCode(7));
}
}

Expand Down

0 comments on commit babf4d4

Please sign in to comment.