Skip to content

Commit

Permalink
[Update] Moving agent stub changes into separate PR
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarksdale committed Jul 8, 2021
1 parent ca7de48 commit 23bc050
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def write_persistent_cache(self, key, value):
def read_persistent_cache(self, key):
return self._cache.get(key, '')

def obfuscate_sql(self, query, options=None):
def obfuscate_sql(self, query):
# This is only whitespace cleanup, NOT obfuscation. Full obfuscation implementation is in go code.
return re.sub(r'\s+', ' ', query or '').strip()

Expand Down

0 comments on commit 23bc050

Please sign in to comment.