Skip to content

Commit

Permalink
fixup! Fixes #18153: rudder-api-client install a non fonctionning rud…
Browse files Browse the repository at this point in the history
…der-cli

Fixes #18153: rudder-api-client install a non fonctionning rudder-cli
  • Loading branch information
ncharles committed Sep 1, 2020
1 parent 498354c commit 5237114
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions cli/rudder-cli
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,15 @@ import json
import os
import re

import urllib3
urllib3.disable_warnings()
try: # compatibility with centos 6
import urllib3
urllib3.disable_warnings()
except:
pass
try:
requests.packages.urllib3.disable_warnings()
except:
pass

# Mapping between commands and api calls
functions = {
Expand Down

0 comments on commit 5237114

Please sign in to comment.