We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9fa99e commit 2ceb713Copy full SHA for 2ceb713
2 files changed
Dockerfile
@@ -23,7 +23,7 @@ RUN python3 -m ensurepip && \
23
if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \
24
rm -r /root/.cache
25
26
-RUN pip --no-cache-dir install --upgrade awscli boto3
+RUN pip --no-cache-dir install --upgrade awscli boto3 requests
27
28
RUN curl -s -L $AWS_IAMAUTH_DOWNLOAD -o /usr/local/bin/aws-iam-authenticator && chmod 755 /usr/local/bin/aws-iam-authenticator
29
gremlinapi/http_clients.py
@@ -117,5 +117,6 @@ def get_gremlin_httpclient():
117
if requests:
118
return GremlineAPIRequestsClient
119
else:
120
- return GremlinAPIurllibClient
+ #return GremlinAPIurllibClient
121
+ return GremlineAPIRequestsClient
122
0 commit comments