Skip to content

Commit

Permalink
Escape request string.
Browse files Browse the repository at this point in the history
  • Loading branch information
asllop committed Dec 14, 2023
1 parent ae98035 commit ca67370
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/newrelic_logging/salesforce.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def make_single_query(self, query_template):
from_timestamp = self.last_to_timestamp
query = query_template.format(to_timestamp=to_timestamp, from_timestamp=from_timestamp,
log_interval_type=self.generation_interval)
query = query.replace(' ', '+')
return query

def slide_time_range(self):
Expand Down

0 comments on commit ca67370

Please sign in to comment.