From 6ddadd7753134c671628ad3f4598595b0abb1457 Mon Sep 17 00:00:00 2001 From: Brad Vogel Date: Fri, 15 May 2020 10:02:04 -0700 Subject: [PATCH] fix: the turn down date for global batch uri (#901) Fixes the date of when the global batch endpoint will be turned down, per the extension outlined in https://developers.googleblog.com/2018/03/discontinuing-support-for-json-rpc-and.html. --- googleapiclient/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googleapiclient/http.py b/googleapiclient/http.py index 8aec1d51b5a..cacd74fdc06 100644 --- a/googleapiclient/http.py +++ b/googleapiclient/http.py @@ -1170,7 +1170,7 @@ def __init__(self, callback=None, batch_uri=None): if batch_uri == _LEGACY_BATCH_URI: LOGGER.warn( "You have constructed a BatchHttpRequest using the legacy batch " - "endpoint %s. This endpoint will be turned down on March 25, 2019. " + "endpoint %s. This endpoint will be turned down on August 12, 2020. " "Please provide the API-specific endpoint or use " "service.new_batch_http_request(). For more details see " "https://developers.googleblog.com/2018/03/discontinuing-support-for-json-rpc-and.html"