@@ -63,9 +63,9 @@ type DeploymentPlugin[Config, DeployTargetConfig any] interface {
63
63
StagePlugin [Config , DeployTargetConfig ]
64
64
65
65
// DetermineVersions determines the versions of the resources that will be deployed.
66
- DetermineVersions (context.Context , * Config , * Client , * DetermineVersionsInput ) (* DetermineVersionsResponse , error )
66
+ DetermineVersions (context.Context , * Config , * DetermineVersionsInput ) (* DetermineVersionsResponse , error )
67
67
// DetermineStrategy determines the strategy to deploy the resources.
68
- DetermineStrategy (context.Context , * Config , * Client , * DetermineStrategyInput ) (* DetermineStrategyResponse , error )
68
+ DetermineStrategy (context.Context , * Config , * DetermineStrategyInput ) (* DetermineStrategyResponse , error )
69
69
// BuildQuickSyncStages builds the stages that will be executed during the quick sync process.
70
70
BuildQuickSyncStages (context.Context , * Config , * BuildQuickSyncStagesInput ) (* BuildQuickSyncStagesResponse , error )
71
71
}
@@ -195,7 +195,7 @@ func (s *DeploymentPluginServiceServer[Config, DeployTargetConfig]) DetermineVer
195
195
Logger : s .logger ,
196
196
}
197
197
198
- versions , err := s .base .DetermineVersions (ctx , & s .config , client , input )
198
+ versions , err := s .base .DetermineVersions (ctx , & s .config , input )
199
199
if err != nil {
200
200
return nil , status .Errorf (codes .Internal , "failed to determine versions: %v" , err )
201
201
}
@@ -218,7 +218,7 @@ func (s *DeploymentPluginServiceServer[Config, DeployTargetConfig]) DetermineStr
218
218
Logger : s .logger ,
219
219
}
220
220
221
- response , err := s .base .DetermineStrategy (ctx , & s .config , client , input )
221
+ response , err := s .base .DetermineStrategy (ctx , & s .config , input )
222
222
if err != nil {
223
223
return nil , status .Errorf (codes .Internal , "failed to determine strategy: %v" , err )
224
224
}
0 commit comments