mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
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:
@@ -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 {
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user