@rpcbase/server 0.242.0 → 0.243.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/bin.js +0 -1
- package/cli/run_docker.js +2 -3
- package/package.json +1 -1
- package/src/sessions/index.js +0 -2
package/bin.js
CHANGED
package/cli/run_docker.js
CHANGED
|
@@ -42,11 +42,10 @@ const run_docker = async(infrastructure_dir, proj_prefix, args) => {
|
|
|
42
42
|
ps_env.RB_SESSION_STORE = "yes"
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
45
|
+
const exec_cmd = `${cmd} ${cmd_args.join(" ")}`
|
|
47
46
|
// WARNING: blocks the process
|
|
48
47
|
// this is the only way to have docker-compose shut down gracefully
|
|
49
|
-
execSync(
|
|
48
|
+
execSync(exec_cmd, {
|
|
50
49
|
cwd: infrastructure_dir,
|
|
51
50
|
stdio: "inherit",
|
|
52
51
|
env: ps_env
|
package/package.json
CHANGED
package/src/sessions/index.js
CHANGED
|
@@ -7,8 +7,6 @@ const is_development = process.env.NODE_ENV === "development"
|
|
|
7
7
|
module.exports = (app) => {
|
|
8
8
|
const has_session_store = process.env.RB_SESSION_STORE === "yes"
|
|
9
9
|
|
|
10
|
-
console.log("WOWOWOW", process.env)
|
|
11
|
-
|
|
12
10
|
if (has_session_store) {
|
|
13
11
|
console.log("using", pc.bold(pc.green("SESSION STORE")))
|
|
14
12
|
|