Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions cli/src/clients/admin_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ impl Deployment {
deployment_response: DeploymentResponse,
) -> (DeploymentId, Self, Vec<ServiceNameRevPair>) {
match deployment_response {
DeploymentResponse::Http {
DeploymentResponse::Http(HttpDeploymentResponse {
id,
uri,
protocol_type,
Expand All @@ -338,7 +338,7 @@ impl Deployment {
metadata,
sdk_version,
..
} => (
}) => (
id,
Deployment::Http {
uri,
Expand All @@ -353,7 +353,7 @@ impl Deployment {
},
services,
),
DeploymentResponse::Lambda {
DeploymentResponse::Lambda(LambdaDeploymentResponse {
id,
arn,
assume_role_arn,
Expand All @@ -365,7 +365,7 @@ impl Deployment {
metadata,
sdk_version,
..
} => (
}) => (
id,
Deployment::Lambda {
arn,
Expand All @@ -386,7 +386,7 @@ impl Deployment {
detailed_deployment_response: DetailedDeploymentResponse,
) -> (DeploymentId, Self, Vec<ServiceMetadata>) {
match detailed_deployment_response {
DetailedDeploymentResponse::Http {
DetailedDeploymentResponse::Http(HttpDetailedDeploymentResponse {
id,
uri,
protocol_type,
Expand All @@ -399,7 +399,7 @@ impl Deployment {
metadata,
sdk_version,
..
} => (
}) => (
id,
Deployment::Http {
uri,
Expand All @@ -414,7 +414,7 @@ impl Deployment {
},
services,
),
DetailedDeploymentResponse::Lambda {
DetailedDeploymentResponse::Lambda(LambdaDetailedDeploymentResponse {
id,
arn,
assume_role_arn,
Expand All @@ -426,7 +426,7 @@ impl Deployment {
metadata,
sdk_version,
..
} => (
}) => (
id,
Deployment::Lambda {
arn,
Expand Down
Loading
Loading