Skip to content

Commit

Permalink
Merge pull request #41 from bmrvilela/master
Browse files Browse the repository at this point in the history
Removed resilience for methods called when login in
  • Loading branch information
portilha authored Jan 29, 2025
2 parents 7573ddc + 0e37f7a commit 7847c5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Checkmarx.API/Connected Services/PortalSoap/Reference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22760,12 +22760,12 @@ public PortalSoap.CxWSIssueTrackingSystemResponse IssueTrackingSystemsAPI(Portal

public PortalSoap.CxWSCxVersionResponse GetVersionNumber()
{
return RetryPolicyProvider.ExecuteWithRetry(() => base.Channel.GetVersionNumber());
return base.Channel.GetVersionNumber();
}

public System.Threading.Tasks.Task<PortalSoap.CxWSCxVersionResponse> GetVersionNumberAsync()
{
return RetryPolicyProvider.ExecuteWithRetryAsync(() => base.Channel.GetVersionNumberAsync());
return base.Channel.GetVersionNumberAsync();
}

public PortalSoap.CxWSCxMoveTeamResponse MoveTeam(string sessionID, string sourceID, string destenationID)
Expand Down

0 comments on commit 7847c5f

Please sign in to comment.