Skip to content

Commit

Permalink
Remove https use for localhost
Browse files Browse the repository at this point in the history
In the kubernetes container the SSL connection is stopped at the ingress
level so localhost doesn't handle HTTPS.
  • Loading branch information
cbosdo committed Sep 15, 2023
1 parent 5b5240b commit 976d266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/tools/mgr-push/rhnpushrc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ count =
dir =

#Push to this server (http[s]://<hostname>/APP)
server = https://localhost/APP
server = http://localhost/APP

#Manage this channel(s)
channel =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class RPCClient:
RPC Client
"""

def __init__(self, user: str = None, password: str = None, url: str = "https://localhost/rpc/api"):
def __init__(self, user: str = None, password: str = None, url: str = "http://localhost/rpc/api"):
"""
XML-RPC client interface.
Expand Down

0 comments on commit 976d266

Please sign in to comment.