Skip to content

Commit

Permalink
Expose dry run mode value of lifecycle manager (#931)
Browse files Browse the repository at this point in the history
  • Loading branch information
ns-kbhat authored Mar 31, 2024
1 parent 5fc3b79 commit 41100a4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lifecycle/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ func (lcs *LifecycleServicesManager) Client() *jfroghttpclient.JfrogHttpClient {
return lcs.client
}

func (lcs *LifecycleServicesManager) IsDryRun() bool {
return lcs.config.IsDryRun()
}

func (lcs *LifecycleServicesManager) CreateReleaseBundleFromAql(rbDetails lifecycle.ReleaseBundleDetails,
queryParams lifecycle.CommonOptionalQueryParams, signingKeyName string, aqlQuery string) error {
rbService := lifecycle.NewReleaseBundlesService(lcs.config.GetServiceDetails(), lcs.client)
Expand Down

0 comments on commit 41100a4

Please sign in to comment.