This is an automated email from the ASF dual-hosted git repository.
dpgaspar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new b7650b9 fix: disable false positive error (#10576)
b7650b9 is described below
commit b7650b9f5717a6d543c8cf6a94573f875e25d407
Author: Daniel Vaz Gaspar <[email protected]>
AuthorDate: Tue Aug 11 18:20:57 2020 +0100
fix: disable false positive error (#10576)
---
superset/utils/decorators.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/utils/decorators.py b/superset/utils/decorators.py
index bb0219c..694e07b 100644
--- a/superset/utils/decorators.py
+++ b/superset/utils/decorators.py
@@ -109,7 +109,7 @@ def etag_cache(max_age: int, check_perms: Callable[...,
Any]) -> Callable[..., A
except Exception: # pylint: disable=broad-except
if app.debug:
raise
- logger.exception("Exception possibly due to cache
backend.")
+ logger.exception("Exception possibly due to cache
backend.")
return response.make_conditional(request)