Skip to content

Commit 638a495

Browse files
authored
Fix for timeout warning parameter for GCP integration & UTC time zone for AWS integration (#799)
Co-authored-by: Shantanu Dhiman <[email protected]> Changes: Converted local time format to UTC time format for AWS Lambda integration, and verified it on cloudwatch logs. Added code for timeout_warning parameter in class GcpIntegration. Fix #796
1 parent 725451a commit 638a495

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sentry_sdk/integrations/gcp.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ def sentry_func(*args, **kwargs):
9191
class GcpIntegration(Integration):
9292
identifier = "gcp"
9393

94+
def __init__(self, timeout_warning=False):
95+
# type: (bool) -> None
96+
self.timeout_warning = timeout_warning
97+
9498
@staticmethod
9599
def setup_once():
96100
# type: () -> None

0 commit comments

Comments
 (0)