runReloadCli function

Future<int> runReloadCli(
  1. List<String> args
)

CLI adapter for fdb reload. Accepts no flags; emits one of:

RELOADED in <ms>ms (success) ERROR: No PID file found. Is the app running? (no session) ERROR: Process <pid> is not running (process dead) RELOAD_FAILED (timeout)

Implementation

Future<int> runReloadCli(List<String> args) => runCliAdapter(ArgParser(), args, _execute);