-
Notifications
You must be signed in to change notification settings - Fork 951
Open
Labels
Description
[REQUIRED] Describe your environment
- Operating System version: Windows 11 22H2 - OS Build 22621.1105
- Browser version: Chrome 109.0.5414.75 (64bit)
- Firebase SDK version: 9.15.0
- Firebase Product: Realtime Database
[REQUIRED] Describe the problem
When call connectDatabaseEmulator
with parameter localhost
, to use emulator suite: set()
function from firebase/database
does not resolve and no writing is done on the database.
If 127.0.0.1
is used instead, logic works as expected
Steps to reproduce:
- Start firebase emulator locally
- Initialize firebase (with RealTime Database)
- Get teh Database ref
- use
connectDatabaseEmulator
to bind the realtime database reference to the local emulator - Call
set()
to write to the database
Expected Result: Data are written to the real time database (local emulator); promise is resolved.
Actual Result: No data is written to DB, neither Resolve nor Error callbacks are called.
Relevant Code:
// Firebase config here up
const app = initializeApp(FIREBASE_CONFIG);
setLogLevel("debug");
enableLogging(true);
const realtimeDB = getDatabase(app);
connectDatabaseEmulator(realtimeDB, 'localhost', 9000);
set(ref(realtimeDB, "test-path"), {
name: "Paolo",
someValue: 31
}).then(() => {
console.log("RTDB OK")
}).catch((error) => {
console.log("Some kind of error: " + error);
});
Output from Log:
NOTE : I replaced my project name with <project-id>
[2023-01-19T10:46:36.997Z] @firebase/database: p:0: Browser went online.
[2023-01-19T10:46:39.928Z] @firebase/database: 0: set {"path":"/test-path","value":{"name":"Paolo","someValue":31},"priority":null}
[2023-01-19T10:46:41.774Z] @firebase/database: p:0: Buffering put: /test-path
[2023-01-19T10:46:41.779Z] @firebase/database: p:0: Making a connection attempt
[2023-01-19T10:46:41.781Z] @firebase/database: getToken() completed. Creating connection.
[2023-01-19T10:46:41.782Z] @firebase/database: c:0:0: Connection created
[2023-01-19T10:46:41.798Z] @firebase/database: c:0:0:0 Websocket connecting to ws://localhost:9000/.ws?v=5&p=1:23966653353:web:d5c91c923ddb033c0f82b8&ns=<project-id>
[2023-01-19T10:46:41.803Z] @firebase/database: c:0:0:0 WebSocket error. Closing connection.
[2023-01-19T10:46:41.804Z] @firebase/database: c:0:0:0 Network error: ws://localhost:9000/.ws?v=5&p=1:23966653353:web:d5c91c923ddb033c0f82b8&ns=<project-id>: connect ECONNREFUSED ::1:9000
[2023-01-19T10:46:41.804Z] @firebase/database: c:0:0:0 WebSocket is closing itself
[2023-01-19T10:46:41.805Z] @firebase/database: c:0:0:0 Websocket connection was disconnected.
[2023-01-19T10:46:41.806Z] @firebase/database: c:0:0: Realtime connection failed.
[2023-01-19T10:46:41.807Z] @firebase/database: c:0:0: Closing realtime connection.
[2023-01-19T10:46:41.807Z] @firebase/database: c:0:0: Shutting down all connections
[2023-01-19T10:46:41.808Z] @firebase/database: p:0: data client disconnected
[2023-01-19T10:46:41.808Z] @firebase/database: p:0: Trying to reconnect in 376.4805688137009ms
[2023-01-19T10:46:41.809Z] @firebase/database: 0: onDisconnectEvents
davidmyersdev