Skip to content

Commit

Permalink
Merge pull request #274 from rstudio/mbh-release-1.4.0-prep
Browse files Browse the repository at this point in the history
Update the NEWS and remove some debug logging
  • Loading branch information
meatballhat authored Jul 10, 2020
2 parents 97c4c9c + c536a70 commit 829ba61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
`rsconnect-jupyter` 1.4.0
--------------------------------------------------------------------------------
* Bump version of `rsconnect-python` used.


`rsconnect-jupyter` 1.3.3
--------------------------------------------------------------------------------
* Bump version of `rsconnect-python` used.
Expand Down
8 changes: 0 additions & 8 deletions rsconnect_jupyter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,6 @@ def post(self, action):
disable_tls_check = data["disable_tls_check"]
cadata = data.get("cadata", None)

self.log.warning(
"server_address=%r api_key=%r disable_tls_check=%r cadata=%r",
server_address,
api_key,
disable_tls_check,
cadata,
)
canonical_address = None
result = None
try:
Expand All @@ -107,7 +100,6 @@ def post(self, action):
)
except Exception as err:
self.log.exception("Unable to verify that the provided server is running RStudio Connect")
self.log.warning("canonical_address=%r result=%r", canonical_address, result)
raise web.HTTPError(
400, u"Unable to verify that the provided server is running RStudio Connect: %s" % err,
)
Expand Down

0 comments on commit 829ba61

Please sign in to comment.