Skip to content

Commit

Permalink
fixup! ✨(backends) add graylog service
Browse files Browse the repository at this point in the history
  • Loading branch information
quitterie-lcs committed Aug 18, 2022
1 parent f122716 commit 66e11f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ralph/backends/logging/graylog.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def post(self, endpoint, data):
) as result:
result.raise_for_status()

return result.text
yield result

def put(self, endpoint, data):
"""Perform Graylog API PUT request."""
Expand All @@ -78,7 +78,7 @@ def put(self, endpoint, data):
) as result:
result.raise_for_status()

return result
yield result

def get_node_id(self):
"""Returns node id of the Graylog cluster."""
Expand Down

0 comments on commit 66e11f8

Please sign in to comment.