Skip to content

Commit

Permalink
fix: push command
Browse files Browse the repository at this point in the history
  • Loading branch information
tikinang committed Mar 13, 2024
1 parent bd74b26 commit f51d936
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/entity/repository/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,13 @@ func GetNonSystemServicesByProject(

func serviceFromEsSearch(esServiceStack output.EsServiceStack) entity.Service {
return entity.Service{
ID: esServiceStack.Id,
ClientId: esServiceStack.ClientId,
Name: esServiceStack.Name,
Status: esServiceStack.Status,
ServiceTypeId: esServiceStack.ServiceStackTypeId,
ServiceTypeCategory: esServiceStack.ServiceStackTypeInfo.ServiceStackTypeCategory,
ID: esServiceStack.Id,
ClientId: esServiceStack.ClientId,
Name: esServiceStack.Name,
Status: esServiceStack.Status,
ServiceTypeId: esServiceStack.ServiceStackTypeId,
ServiceTypeCategory: esServiceStack.ServiceStackTypeInfo.ServiceStackTypeCategory,
ServiceStackTypeVersionName: esServiceStack.ServiceStackTypeInfo.ServiceStackTypeVersionName,
}
}

Expand Down

0 comments on commit f51d936

Please sign in to comment.