Skip to content

Commit

Permalink
obfuscation oauth fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SOOS-JAlvarez committed Mar 2, 2023
1 parent b80b1ac commit 5cb4c91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.22
1.0.23
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def __make_soos_start_analysis_request__(self, command: str) -> DASTStartAnalysi
if self.auth_username is not None:
obfuscated_command = obfuscated_command.replace(self.auth_username, "********")
if self.oauth_token_url is not None:
obfuscated_command = obfuscated_command.replace
obfuscated_command = obfuscated_command.replace(self.oauth_token_url, "********")

param_values: dict = dict(
projectName=self.project_name,
Expand Down

0 comments on commit 5cb4c91

Please sign in to comment.