fix: Fix a lint

chore: remove the limit on the long-running

fix: Starting sometimes.

fix: Make it so the stop of the main works

fix: Bind local and tor with package.

wip: envs

fix TS error

import config types from sdk

update package.json
This commit is contained in:
BluJ
2023-02-20 12:22:57 -07:00
committed by Aiden McClelland
parent f5430f9151
commit 5e9e26fa67
34 changed files with 1425 additions and 1195 deletions

View File

@@ -236,7 +236,7 @@ mod tests {
use tokio::sync::watch;
struct OsApiMock {
config_callbacks: watch::Sender<Vec<Callback>>,
config_callbacks: (watch::Sender<Vec<Callback>>, watch::Sender<Vec<Callback>>),
}
impl Default for OsApiMock {
fn default() -> Self {

View File

@@ -93,13 +93,12 @@ impl PackageProcedure {
ErrorKind::NotFound,
)
})?;
let gid;
let rpc_client = man.rpc_client();
if matches!(name, ProcedureName::Main) {
gid = man.gid.new_main_gid();
let gid = if matches!(name, ProcedureName::Main) {
man.gid.new_main_gid()
} else {
gid = man.gid.new_gid();
}
man.gid.new_gid()
};
procedure
.execute(