@rpcbase/server 0.269.0 → 0.271.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/get_dev_watcher.js +1 -1
- package/database.js +0 -2
- package/package.json +1 -1
package/cli/get_dev_watcher.js
CHANGED
package/database.js
CHANGED
|
@@ -26,8 +26,6 @@ if (typeof DATABASE_NAME !== "string") {
|
|
|
26
26
|
throw new Error("expected DATABASE_NAME to be a string")
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
console.log("IS DOCKERRRRR", is_docker())
|
|
30
|
-
|
|
31
29
|
const hostname = is_docker() ? "database" : "127.0.0.1"
|
|
32
30
|
|
|
33
31
|
const mongo_url = `mongodb://${hostname}:${DATABASE_PORT}/${DATABASE_NAME}?directConnection=true&replicaSet=rs0`
|