You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2019/10/15 00:35:35 UTC

[beam] branch aaltay-patch-2 created (now a5f9d85)

This is an automated email from the ASF dual-hosted git repository.

altay pushed a change to branch aaltay-patch-2
in repository https://gitbox.apache.org/repos/asf/beam.git.


      at a5f9d85  Fixing a logging bug in auth

This branch includes the following new commits:

     new a5f9d85  Fixing a logging bug in auth

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Fixing a logging bug in auth

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

altay pushed a commit to branch aaltay-patch-2
in repository https://gitbox.apache.org/repos/asf/beam.git

commit a5f9d850dd054fc43e3b8468f0e9f03951d1e8e1
Author: Ahmet Altay <aa...@gmail.com>
AuthorDate: Mon Oct 14 17:34:54 2019 -0700

    Fixing a logging bug in auth
---
 sdks/python/apache_beam/internal/gcp/auth.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/apache_beam/internal/gcp/auth.py b/sdks/python/apache_beam/internal/gcp/auth.py
index f8c1254..5142a34 100644
--- a/sdks/python/apache_beam/internal/gcp/auth.py
+++ b/sdks/python/apache_beam/internal/gcp/auth.py
@@ -104,7 +104,7 @@ class _Credentials(object):
         logging.info("Setting socket default timeout to 60 seconds.")
         socket.setdefaulttimeout(60)
       logging.info(
-          "socket default timeout is % seconds.", socket.getdefaulttimeout())
+          "socket default timeout is %s seconds.", socket.getdefaulttimeout())
 
       cls._credentials = cls._get_service_credentials()
       cls._credentials_init = True