Skip to content

Commit 2ceb713

Browse files
committed
fixed missing package in docker container
1 parent f9fa99e commit 2ceb713

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN python3 -m ensurepip && \
2323
if [[ ! -e /usr/bin/python ]]; then ln -sf /usr/bin/python3 /usr/bin/python; fi && \
2424
rm -r /root/.cache
2525

26-
RUN pip --no-cache-dir install --upgrade awscli boto3
26+
RUN pip --no-cache-dir install --upgrade awscli boto3 requests
2727

2828
RUN curl -s -L $AWS_IAMAUTH_DOWNLOAD -o /usr/local/bin/aws-iam-authenticator && chmod 755 /usr/local/bin/aws-iam-authenticator
2929

gremlinapi/http_clients.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,6 @@ def get_gremlin_httpclient():
117117
if requests:
118118
return GremlineAPIRequestsClient
119119
else:
120-
return GremlinAPIurllibClient
120+
#return GremlinAPIurllibClient
121+
return GremlineAPIRequestsClient
121122

0 commit comments

Comments
 (0)