Skip to content

Commit

Permalink
Update python pathlib to pathlib2 which is an actively maintained ver…
Browse files Browse the repository at this point in the history
…sion (#1930)

Signed-off-by: Gary Brown <gary@brownuk.com>
  • Loading branch information
objectiser authored and jpkrohling committed Nov 20, 2019
1 parent b467041 commit 115f931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/storage/es/Dockerfile.rollover
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3-alpine
# Temporary fix for https://github.com/jaegertracing/jaeger/issues/1494
RUN pip install urllib3==1.21.1

RUN pip install elasticsearch elasticsearch-curator
RUN pip install elasticsearch elasticsearch-curator pathlib2
COPY ./mappings/* /mappings/
COPY esRollover.py /es-rollover/

Expand Down
2 changes: 1 addition & 1 deletion plugin/storage/es/esRollover.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import requests
import ssl
import sys
from pathlib import Path
from pathlib2 import Path
from requests.auth import HTTPBasicAuth


Expand Down

0 comments on commit 115f931

Please sign in to comment.