Skip to content

Commit

Permalink
Merge branch 'master' into bump-spell
Browse files Browse the repository at this point in the history
  • Loading branch information
kmd-fl committed Feb 24, 2023
2 parents 7cd1cc7 + 0e7b76e commit 1ad221f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test:
cargo test --release

server:
RUST_LOG="info,tide=off" \
RUST_LOG="info,tide=off,run-console=debug" \
cargo run --release -p particle-node

server-debug:
Expand Down
8 changes: 7 additions & 1 deletion particle-services/src/app_services.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,13 @@ impl ParticleAppServices {
// ));
// }

let service_type = ServiceType::Service(service.worker_aliases.first().cloned());
let service_type = ServiceType::Service(
service
.root_aliases
.first()
.or_else(|| service.worker_aliases.first())
.cloned(),
);

// TODO: move particle vault creation to aquamarine::particle_functions
self.create_vault(&particle.id)?;
Expand Down

0 comments on commit 1ad221f

Please sign in to comment.