Skip to content

Commit

Permalink
fix: create manager actor with bridge & https (#1621)
Browse files Browse the repository at this point in the history
<!-- Please make sure there is an issue that this PR is correlated to. -->

## Changes

<!-- If there are frontend changes, please include screenshots. -->
  • Loading branch information
NathanFlurry committed Dec 13, 2024
1 parent abd7b27 commit 8c53cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/toolchain/toolchain/src/tasks/deploy/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ pub async fn deploy(
)])),
})),
network: Some(Box::new(models::ActorCreateActorNetworkRequest {
mode: Some(models::ActorNetworkMode::Host),
mode: Some(models::ActorNetworkMode::Bridge),
ports: Some(HashMap::from([(
crate::util::actor_manager::HTTP_PORT.to_string(),
models::ActorCreateActorPortRequest {
protocol: models::ActorPortProtocol::Http,
protocol: models::ActorPortProtocol::Https,
internal_port: None,
routing: Some(Box::new(models::ActorPortRouting {
host: None,
Expand Down

0 comments on commit 8c53cc7

Please sign in to comment.