Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lostbean committed Oct 2, 2024
1 parent 09ce770 commit 7a8ca03
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions kontrol-service/api/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,9 @@ func (sv *Server) PostTenantUuidFlowCreate(_ context.Context, request api.PostTe
}

func (sv *Server) checkOrCreateFlowID(tenantUuid apitypes.Uuid, requestFlowId *string) (string, bool, error) {

var flowIdAlreadyExist bool

clusterTopology, allFlows, _, _, _, _, _, err := getTenantTopologies(sv, tenantUuid)
clusterTopology, allFlows, _, _, _, _, _, _, _, err := getTenantTopologies(sv, tenantUuid)
if err != nil {
return "", flowIdAlreadyExist, err
}
Expand Down Expand Up @@ -590,7 +589,6 @@ func applyProdDevFlow(
patches []flow_spec.ServicePatchSpec,
templateSpec *apitypes.TemplateSpec,
) ([]resolved.IngressAccessEntry, error) {

logrus.Debugf("generating base cluster topology for tenant %s on flowID %s", tenantUuidStr, flowID)

baseTopology, _, tenantTemplates, serviceConfigs, deploymentConfigs, statefulSetConfigs, ingressConfigs, gatewayConfigs, routeConfigs, err := getTenantTopologies(sv, tenantUuidStr)
Expand Down

0 comments on commit 7a8ca03

Please sign in to comment.