diff options
author | Paul J. Davis <paul.joseph.davis@gmail.com> | 2021-01-21 10:25:07 -0600 |
---|---|---|
committer | Paul J. Davis <paul.joseph.davis@gmail.com> | 2021-01-21 10:25:07 -0600 |
commit | 4638b49b0387a13ea31d389d9793297fc3612cec (patch) | |
tree | 1c3a947906480ecf1ec7a3d9bb4a6cad38530bd9 | |
parent | e123adf499f345bbd7aaacc91a58d9d29e30fa20 (diff) | |
download | couchdb-3.x-devnode-boot-script.tar.gz |
Add formatting suggestions from python-black3.x-devnode-boot-script
-rwxr-xr-x | dev/run | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -268,6 +268,7 @@ def check_beams(ctx): for fname in glob.glob(os.path.join(ctx["devdir"], "*.erl")): sp.check_call(["erlc", "-o", ctx["devdir"] + os.sep, fname]) + @log("Ensure Erlang boot script exists") def check_boot_script(ctx): if not os.path.exists(os.path.join(ctx["devdir"], "devnode.boot")): @@ -275,6 +276,7 @@ def check_boot_script(ctx): env["ERL_LIBS"] = os.path.join(ctx["rootdir"], "src") sp.check_call(["escript", "make_boot_script"], env=env, cwd=ctx["devdir"]) + @log("Prepare configuration files") def setup_configs(ctx): for idx, node in enumerate(ctx["nodes"]): @@ -624,7 +626,7 @@ def boot_node(ctx, node): os.path.join(ctx["devdir"], "devnode"), "-pa", ctx["devdir"], - "-s monitor_parent" + "-s monitor_parent", ] if ctx["reset_logs"]: mode = "wb" |