From 5b9a71416b8cf9327d18e7395b012e9146a0a24a Mon Sep 17 00:00:00 2001 From: Melissa Autumn Date: Mon, 22 Jan 2024 10:43:57 -0800 Subject: [PATCH] Don't explicitly set sendUpdates for `create_event`. --- backend/src/appointment/controller/apis/google_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/appointment/controller/apis/google_client.py b/backend/src/appointment/controller/apis/google_client.py index 1b0371c97..bbb5aa23a 100644 --- a/backend/src/appointment/controller/apis/google_client.py +++ b/backend/src/appointment/controller/apis/google_client.py @@ -140,7 +140,7 @@ def create_event(self, calendar_id, body, token): response = None with build("calendar", "v3", credentials=token, cache_discovery=False) as service: try: - response = service.events().insert(calendarId=calendar_id, sendUpdates="all", body=body).execute() + response = service.events().insert(calendarId=calendar_id, body=body).execute() except HttpError as e: logging.warning(f"[google_client.create_event] Request Error: {e.status_code}/{e.error_details}")