· 6 years ago · Dec 04, 2019, 03:45 AM
1Last login: Tue Dec 3 07:14:01 on ttys006
2luccas@Luccass-Mac ~ % python
3
4WARNING: Python 2.7 is not recommended.
5This version is included in macOS for compatibility with legacy software.
6Future versions of macOS will not include Python 2.7.
7Instead, it is recommended that you transition to using 'python3' from within Terminal.
8
9Python 2.7.16 (default, Oct 17 2019, 17:14:30)
10[GCC 4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.32.4) (-macos10.15-objc-s on darwin
11Type "help", "copyright", "credits" or "license" for more information.
12>>> exit()
13luccas@Luccass-Mac ~ % docker -v
14Docker version 19.03.5, build 633a0ea
15luccas@Luccass-Mac ~ % docker-compose -v
16docker-compose version 1.24.1, build 4667896b
17luccas@Luccass-Mac ~ % node -v
18v8.16.2
19luccas@Luccass-Mac ~ % nvm -v
20
21Node Version Manager (v0.35.1)
22
23Note: <version> refers to any version-like string nvm understands. This includes:
24 - full or partial version numbers, starting with an optional "v" (0.10, v0.1.2, v1)
25 - default (built-in) aliases: node, stable, unstable, iojs, system
26 - custom aliases you define with `nvm alias foo`
27
28 Any options that produce colorized output should respect the `--no-colors` option.
29
30Usage:
31 nvm --help Show this message
32 nvm --version Print out the installed version of nvm
33 nvm install [-s] <version> Download and install a <version>, [-s] from source. Uses .nvmrc if available
34 --reinstall-packages-from=<version> When installing, reinstall packages installed in <node|iojs|node version number>
35 --lts When installing, only select from LTS (long-term support) versions
36 --lts=<LTS name> When installing, only select from versions for a specific LTS line
37 --skip-default-packages When installing, skip the default-packages file if it exists
38 --latest-npm After installing, attempt to upgrade to the latest working npm on the given node version
39 --no-progress Disable the progress bar on any downloads
40 nvm uninstall <version> Uninstall a version
41 nvm uninstall --lts Uninstall using automatic LTS (long-term support) alias `lts/*`, if available.
42 nvm uninstall --lts=<LTS name> Uninstall using automatic alias for provided LTS line, if available.
43 nvm use [--silent] <version> Modify PATH to use <version>. Uses .nvmrc if available
44 --lts Uses automatic LTS (long-term support) alias `lts/*`, if available.
45 --lts=<LTS name> Uses automatic alias for provided LTS line, if available.
46 nvm exec [--silent] <version> [<command>] Run <command> on <version>. Uses .nvmrc if available
47 --lts Uses automatic LTS (long-term support) alias `lts/*`, if available.
48 --lts=<LTS name> Uses automatic alias for provided LTS line, if available.
49 nvm run [--silent] <version> [<args>] Run `node` on <version> with <args> as arguments. Uses .nvmrc if available
50 --lts Uses automatic LTS (long-term support) alias `lts/*`, if available.
51 --lts=<LTS name> Uses automatic alias for provided LTS line, if available.
52 nvm current Display currently activated version of Node
53 nvm ls [<version>] List installed versions, matching a given <version> if provided
54 --no-colors Suppress colored output
55 --no-alias Suppress `nvm alias` output
56 nvm ls-remote [<version>] List remote versions available for install, matching a given <version> if provided
57 --lts When listing, only show LTS (long-term support) versions
58 --lts=<LTS name> When listing, only show versions for a specific LTS line
59 --no-colors Suppress colored output
60 nvm version <version> Resolve the given description to a single local version
61 nvm version-remote <version> Resolve the given description to a single remote version
62 --lts When listing, only select from LTS (long-term support) versions
63 --lts=<LTS name> When listing, only select from versions for a specific LTS line
64 nvm deactivate Undo effects of `nvm` on current shell
65 nvm alias [<pattern>] Show all aliases beginning with <pattern>
66 --no-colors Suppress colored output
67 nvm alias <name> <version> Set an alias named <name> pointing to <version>
68 nvm unalias <name> Deletes the alias named <name>
69 nvm install-latest-npm Attempt to upgrade to the latest working `npm` on the current node version
70 nvm reinstall-packages <version> Reinstall global `npm` packages contained in <version> to current version
71 nvm unload Unload `nvm` from shell
72 nvm which [current | <version>] Display path to installed node version. Uses .nvmrc if available
73 nvm cache dir Display path to the cache directory for nvm
74 nvm cache clear Empty cache directory for nvm
75
76Example:
77 nvm install 8.0.0 Install a specific version number
78 nvm use 8.0 Use the latest available 8.0.x release
79 nvm run 6.10.3 app.js Run app.js using node 6.10.3
80 nvm exec 4.8.3 node app.js Run `node app.js` with the PATH pointing to node 4.8.3
81 nvm alias default 8.1.0 Set default node version on a shell
82 nvm alias default node Always default to the latest available node version on a shell
83
84Note:
85 to remove, delete, or uninstall nvm - just remove the `$NVM_DIR` folder (usually `~/.nvm`)
86
87luccas@Luccass-Mac ~ % git -v
88unknown option: -v
89usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
90 [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
91 [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]
92 [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
93 <command> [<args>]
94luccas@Luccass-Mac ~ % go -v
95flag provided but not defined: -v
96Go is a tool for managing Go source code.
97
98Usage:
99
100 go <command> [arguments]
101
102The commands are:
103
104 bug start a bug report
105 build compile packages and dependencies
106 clean remove object files and cached files
107 doc show documentation for package or symbol
108 env print Go environment information
109 fix update packages to use new APIs
110 fmt gofmt (reformat) package sources
111 generate generate Go files by processing source
112 get add dependencies to current module and install them
113 install compile and install packages and dependencies
114 list list packages or modules
115 mod module maintenance
116 run compile and run Go program
117 test test packages
118 tool run specified go tool
119 version print Go version
120 vet report likely mistakes in packages
121
122Use "go help <command>" for more information about a command.
123
124Additional help topics:
125
126 buildmode build modes
127 c calling between Go and C
128 cache build and test caching
129 environment environment variables
130 filetype file types
131 go.mod the go.mod file
132 gopath GOPATH environment variable
133 gopath-get legacy GOPATH go get
134 goproxy module proxy protocol
135 importpath import path syntax
136 modules modules, module versions, and more
137 module-get module-aware go get
138 module-auth module authentication using go.sum
139 module-private module configuration for non-public modules
140 packages package lists and patterns
141 testflag testing flags
142 testfunc testing functions
143
144Use "go help <topic>" for more information about that topic.
145
146luccas@Luccass-Mac ~ %
147luccas@Luccass-Mac ~ % make -v
148GNU Make 3.81
149Copyright (C) 2006 Free Software Foundation, Inc.
150This is free software; see the source for copying conditions.
151There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
152PARTICULAR PURPOSE.
153
154This program built for i386-apple-darwin11.3.0
155luccas@Luccass-Mac ~ % go get golang.org/x/tools/cmd/goimports
156luccas@Luccass-Mac ~ % goimports
157zsh: command not found: goimports
158luccas@Luccass-Mac ~ % vim .bash_profile
159luccas@Luccass-Mac ~ % goimports
160zsh: command not found: goimports
161luccas@Luccass-Mac ~ % gofmt
162
163
164
165
166
167
168
169
170^C
171luccas@Luccass-Mac ~ % gofmt -v
172flag provided but not defined: -v
173usage: gofmt [flags] [path ...]
174 -cpuprofile string
175 write cpu profile to this file
176 -d display diffs instead of rewriting files
177 -e report all errors (not just the first 10 on different lines)
178 -l list files whose formatting differs from gofmt's
179 -r string
180 rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')
181 -s simplify code
182 -w write result to (source) file instead of stdout
183luccas@Luccass-Mac ~ % cd Desktop/getit
184luccas@Luccass-Mac getit % ls
185Dockerfile deps likes.js
186README.md docker messages
187adapult docker-compose.yaml requirements.txt
188bitbucket-pipelines.yml environment.env scripts
189ci environment.env.example search-alerts
190click-service internal-cbs src
191client k8s vendor
192luccas@Luccass-Mac getit % vim environment.env
193luccas@Luccass-Mac getit % code
194zsh: command not found: code
195luccas@Luccass-Mac getit % pip -v
196zsh: command not found: pip
197luccas@Luccass-Mac getit % sudo easy_install pip
198Password:
199Searching for pip
200Reading https://pypi.org/simple/pip/
201Downloading https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl#sha256=6917c65fc3769ecdc61405d3dfd97afdedd75808d200b2838d7d961cebc0c2c7
202Best match: pip 19.3.1
203Processing pip-19.3.1-py2.py3-none-any.whl
204Installing pip-19.3.1-py2.py3-none-any.whl to /Library/Python/2.7/site-packages
205Adding pip 19.3.1 to easy-install.pth file
206Installing pip script to /usr/local/bin
207Installing pip3.7 script to /usr/local/bin
208Installing pip3 script to /usr/local/bin
209
210Installed /Library/Python/2.7/site-packages/pip-19.3.1-py2.7.egg
211Processing dependencies for pip
212Finished processing dependencies for pip
213luccas@Luccass-Mac getit % sudo pip install --upgrade pip
214DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
215WARNING: The directory '/Users/luccas/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
216WARNING: The directory '/Users/luccas/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
217Requirement already up-to-date: pip in /Library/Python/2.7/site-packages/pip-19.3.1-py2.7.egg (19.3.1)
218luccas@Luccass-Mac getit % pip -v
219
220Usage:
221 pip <command> [options]
222
223Commands:
224 install Install packages.
225 download Download packages.
226 uninstall Uninstall packages.
227 freeze Output installed packages in requirements format.
228 list List installed packages.
229 show Show information about installed packages.
230 check Verify installed packages have compatible dependencies.
231 config Manage local and global configuration.
232 search Search PyPI for packages.
233 wheel Build wheels from your requirements.
234 hash Compute hashes of package archives.
235 completion A helper command used for command completion.
236 debug Show information useful for debugging.
237 help Show help for commands.
238
239General Options:
240 -h, --help Show help.
241 --isolated Run pip in an isolated mode, ignoring
242 environment variables and user configuration.
243 -v, --verbose Give more output. Option is additive, and can be
244 used up to 3 times.
245 -V, --version Show version and exit.
246 -q, --quiet Give less output. Option is additive, and can be
247 used up to 3 times (corresponding to WARNING,
248 ERROR, and CRITICAL logging levels).
249 --log <path> Path to a verbose appending log.
250 --proxy <proxy> Specify a proxy in the form
251 [user:passwd@]proxy.server:port.
252 --retries <retries> Maximum number of retries each connection should
253 attempt (default 5 times).
254 --timeout <sec> Set the socket timeout (default 15 seconds).
255 --exists-action <action> Default action when a path already exists:
256 (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
257 --trusted-host <hostname> Mark this host or host:port pair as trusted,
258 even though it does not have valid or any HTTPS.
259 --cert <path> Path to alternate CA bundle.
260 --client-cert <path> Path to SSL client certificate, a single file
261 containing the private key and the certificate
262 in PEM format.
263 --cache-dir <dir> Store the cache data in <dir>.
264 --no-cache-dir Disable the cache.
265 --disable-pip-version-check
266 Don't periodically check PyPI to determine
267 whether a new version of pip is available for
268 download. Implied with --no-index.
269 --no-color Suppress colored output
270luccas@Luccass-Mac getit % pip --version
271pip 19.3.1 from /Library/Python/2.7/site-packages/pip-19.3.1-py2.7.egg/pip (python 2.7)
272luccas@Luccass-Mac getit % RUN_ADAPULT_MIGRATION=true docker-compose up —build dev-server
273Creating network "getit_default" with the default driver
274Creating network "getit_esnet" with the default driver
275Creating volume "getit_esdata1" with local driver
276Creating volume "getit_esdata2" with local driver
277ERROR: No such service: —build
278luccas@Luccass-Mac getit % RUN_ADAPULT_MIGRATION=true docker-compose up --build dev-server
279Building log
280Step 1/7 : FROM alpine:3.6
2813.6: Pulling from library/alpine
2825a3ea8efae5d: Pull complete
283Digest: sha256:66790a2b79e1ea3e1dabac43990c54aca5d1ddf268d9a5a0285e4167c8b24475
284Status: Downloaded newer image for alpine:3.6
285 ---> 43773d1dba76
286Step 2/7 : RUN apk add --update tzdata
287 ---> Running in e0c57fa1b364
288fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
289fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
290(1/1) Installing tzdata (2019a-r0)
291Executing busybox-1.26.2-r11.trigger
292OK: 7 MiB in 14 packages
293Removing intermediate container e0c57fa1b364
294 ---> a277a7ad712d
295Step 3/7 : ENV TZ=America/New_York
296 ---> Running in ac035c32e468
297Removing intermediate container ac035c32e468
298 ---> 9685acb687f1
299Step 4/7 : RUN apk add --update syslog-ng
300 ---> Running in c749c6234a4f
301fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
302fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
303(1/19) Installing eventlog (0.2.12-r2)
304(2/19) Installing libffi (3.2.1-r3)
305(3/19) Installing libintl (0.19.8.1-r1)
306(4/19) Installing libuuid (2.28.2-r2)
307(5/19) Installing libblkid (2.28.2-r2)
308(6/19) Installing libmount (2.28.2-r2)
309(7/19) Installing pcre (8.41-r0)
310(8/19) Installing glib (2.52.1-r0)
311(9/19) Installing hiredis (0.13.3-r0)
312(10/19) Installing libbz2 (1.0.6-r5)
313(11/19) Installing expat (2.2.0-r1)
314(12/19) Installing gdbm (1.12-r0)
315(13/19) Installing ncurses-terminfo-base (6.0_p20171125-r1)
316(14/19) Installing ncurses-terminfo (6.0_p20171125-r1)
317(15/19) Installing ncurses-libs (6.0_p20171125-r1)
318(16/19) Installing readline (6.3.008-r5)
319(17/19) Installing sqlite-libs (3.25.3-r0)
320(18/19) Installing python2 (2.7.15-r0)
321(19/19) Installing syslog-ng (3.9.1-r1)
322Executing syslog-ng-3.9.1-r1.post-install
323Executing busybox-1.26.2-r11.trigger
324Executing glib-2.52.1-r0.trigger
325OK: 61 MiB in 33 packages
326Removing intermediate container c749c6234a4f
327 ---> b5eb58c73254
328Step 5/7 : ADD ./docker/log/syslog-ng.conf /etc/syslog-ng/syslog-ng.conf
329 ---> 817b2bcc9c5e
330Step 6/7 : EXPOSE 514/tcp 514/udp
331 ---> Running in 53a6c498ae9f
332Removing intermediate container 53a6c498ae9f
333 ---> 06a212b01e54
334Step 7/7 : ENTRYPOINT ["/usr/sbin/syslog-ng", "-F", "-f", "/etc/syslog-ng/syslog-ng.conf"]
335 ---> Running in 8891c7e917e2
336Removing intermediate container 8891c7e917e2
337 ---> cfcd44ab84ca
338Successfully built cfcd44ab84ca
339Successfully tagged getit_log:latest
340Pulling elasticsearch (docker.elastic.co/elasticsearch/elasticsearch:6.5.1)...
3416.5.1: Pulling from elasticsearch/elasticsearch
342aeb7866da422: Pull complete
3438ed52286043f: Pull complete
3448b87f38e78e9: Pull complete
345a4cf659acf47: Pull complete
3460385f485f7da: Pull complete
347e76d98016114: Pull complete
34800185d9e8607: Pull complete
34914f38d200567: Pull complete
350Digest: sha256:c598e8343af6a2734ae768b4d25f976c1de6c45d8d9f8dfa8a3c3448e5a85e86
351Status: Downloaded newer image for docker.elastic.co/elasticsearch/elasticsearch:6.5.1
352Building messages
353Step 1/12 : FROM golang:1.11.4-alpine3.8
3541.11.4-alpine3.8: Pulling from library/golang
355cd784148e348: Pull complete
3567e273b0dfc44: Pull complete
357952c3806fd1a: Pull complete
358ee1f873f86f9: Pull complete
3597172cd197d12: Pull complete
360Digest: sha256:198cb8c94b9ee6941ce6d58f29aadb855f64600918ce602cdeacb018ad77d647
361Status: Downloaded newer image for golang:1.11.4-alpine3.8
362 ---> f56365ec0638
363Step 2/12 : ENV ELASTIC_HOST=
364 ---> Running in 7c294e25de39
365Removing intermediate container 7c294e25de39
366 ---> f8afea2bbc5f
367Step 3/12 : ENV ELASTIC_NAME=
368 ---> Running in 7a15b0b47ba5
369Removing intermediate container 7a15b0b47ba5
370 ---> d06a7bf6b9e3
371Step 4/12 : ENV ELASTIC_PASSWORD=
372 ---> Running in c8a0f6035393
373Removing intermediate container c8a0f6035393
374 ---> 22305e81c33e
375Step 5/12 : RUN apk add --update git libxml2 libxml2-dev
376 ---> Running in 0366024f4e48
377fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
378fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
379(1/10) Installing nghttp2-libs (1.39.2-r0)
380(2/10) Installing libssh2 (1.9.0-r1)
381(3/10) Installing libcurl (7.61.1-r3)
382(4/10) Installing expat (2.2.8-r0)
383(5/10) Installing pcre2 (10.31-r0)
384(6/10) Installing git (2.18.1-r0)
385(7/10) Installing libxml2 (2.9.8-r1)
386(8/10) Installing pkgconf (1.5.3-r0)
387(9/10) Installing zlib-dev (1.2.11-r1)
388(10/10) Installing libxml2-dev (2.9.8-r1)
389Executing busybox-1.28.4-r2.trigger
390OK: 27 MiB in 24 packages
391Removing intermediate container 0366024f4e48
392 ---> 5eb74b1670aa
393Step 6/12 : RUN apk add --update gcc libc-dev
394 ---> Running in 3c11bf55f9cc
395(1/14) Upgrading musl (1.1.19-r10 -> 1.1.19-r11)
396(2/14) Installing binutils (2.30-r6)
397(3/14) Installing gmp (6.1.2-r1)
398(4/14) Installing isl (0.18-r0)
399(5/14) Installing libgomp (6.4.0-r9)
400(6/14) Installing libatomic (6.4.0-r9)
401(7/14) Installing libgcc (6.4.0-r9)
402(8/14) Installing mpfr3 (3.1.5-r1)
403(9/14) Installing mpc1 (1.0.3-r1)
404(10/14) Installing libstdc++ (6.4.0-r9)
405(11/14) Installing gcc (6.4.0-r9)
406(12/14) Installing musl-dev (1.1.19-r11)
407(13/14) Installing libc-dev (0.7.1-r0)
408(14/14) Upgrading musl-utils (1.1.19-r10 -> 1.1.19-r11)
409Executing busybox-1.28.4-r2.trigger
410OK: 121 MiB in 36 packages
411Removing intermediate container 3c11bf55f9cc
412 ---> cf0b6d17d396
413Step 7/12 : RUN mkdir -p /opt/code/
414 ---> Running in 613cd54edffc
415Removing intermediate container 613cd54edffc
416 ---> b290baac24c0
417Step 8/12 : WORKDIR /opt/code/
418 ---> Running in 09a559333bf9
419Removing intermediate container 09a559333bf9
420 ---> 65a67ebdee89
421Step 9/12 : ADD ./ /opt/code/
422 ---> 82331c0eea1d
423Step 10/12 : RUN go build -mod=vendor -o /go/bin/messages
424 ---> Running in b5607198a7eb
425Removing intermediate container b5607198a7eb
426 ---> 932bba2f10ea
427Step 11/12 : ENTRYPOINT /go/bin/messages
428 ---> Running in ea4f076c18c4
429Removing intermediate container ea4f076c18c4
430 ---> a890c01e4201
431Step 12/12 : EXPOSE 8080
432 ---> Running in fd77fbc8ea2f
433Removing intermediate container fd77fbc8ea2f
434 ---> 75d73c7ffc3a
435Successfully built 75d73c7ffc3a
436Successfully tagged getit_messages:latest
437Building db
438Step 1/42 : FROM python:3.6.7-alpine3.6
4393.6.7-alpine3.6: Pulling from library/python
440ab3d5dc0b96d: Pull complete
44171afa6c1e317: Pull complete
4422bcf07aaf18b: Pull complete
4439241a3cc520e: Pull complete
4444f8166d127bf: Pull complete
445Digest: sha256:c42394297f3984178f709248d30b8ab2ab7987db71c0729a65077606ea17d866
446Status: Downloaded newer image for python:3.6.7-alpine3.6
447 ---> 8f30079779ef
448Step 2/42 : ARG POSTGRES_DB
449 ---> Running in d2ede88e8863
450Removing intermediate container d2ede88e8863
451 ---> 963f2e39b14e
452Step 3/42 : ENV POSTGRES_DB $POSTGRES_DB
453 ---> Running in dd432efb9ea9
454Removing intermediate container dd432efb9ea9
455 ---> 37657226cb56
456Step 4/42 : ARG POSTGRES_USER
457 ---> Running in 4c63ad60ccbe
458Removing intermediate container 4c63ad60ccbe
459 ---> 28a1c8af05fa
460Step 5/42 : ENV POSTGRES_USER $POSTGRES_USER
461 ---> Running in 12f493c3bd45
462Removing intermediate container 12f493c3bd45
463 ---> 35027e6315d9
464Step 6/42 : ARG POSTGRES_PASSWORD
465 ---> Running in 986ff90a144b
466Removing intermediate container 986ff90a144b
467 ---> 261bd94e6e73
468Step 7/42 : ENV POSTGRES_PASSWORD $POSTGRES_PASSWORD
469 ---> Running in 026d5b372ae9
470Removing intermediate container 026d5b372ae9
471 ---> 9b8e7f8331e2
472Step 8/42 : ARG POSTGRES_PORT
473 ---> Running in 313bd782f591
474Removing intermediate container 313bd782f591
475 ---> 2c37cef53db9
476Step 9/42 : ARG django_secret_key
477 ---> Running in 3ccbe2bf09cd
478Removing intermediate container 3ccbe2bf09cd
479 ---> c4ad813a1ca4
480Step 10/42 : ENV DJANGO_SECRET_KEY $django_secret_key
481 ---> Running in 0bba3c656b65
482Removing intermediate container 0bba3c656b65
483 ---> 186807f53929
484Step 11/42 : ENV POSTGRES_HOST localhost
485 ---> Running in 2f4e21195036
486Removing intermediate container 2f4e21195036
487 ---> 3a10a7b08ddb
488Step 12/42 : RUN apk --update add bash nano curl su-exec git postgresql postgresql-contrib postgresql-dev && rm -rf /var/cache/apk/*
489 ---> Running in a745375dbf1d
490fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
491fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
492(1/23) Installing bash (4.3.48-r1)
493Executing bash-4.3.48-r1.post-install
494(2/23) Installing libssh2 (1.8.2-r0)
495(3/23) Installing libcurl (7.61.1-r2)
496(4/23) Installing curl (7.61.1-r2)
497(5/23) Installing pcre (8.41-r0)
498(6/23) Installing git (2.13.7-r2)
499(7/23) Installing libmagic (5.32-r0)
500(8/23) Installing nano (2.8.4-r0)
501(9/23) Installing libedit (20170329.3.1-r2)
502(10/23) Installing db (5.3.28-r0)
503(11/23) Installing libsasl (2.1.26-r10)
504(12/23) Installing libldap (2.4.44-r5)
505(13/23) Installing libpq (9.6.13-r0)
506(14/23) Installing postgresql-client (9.6.13-r0)
507(15/23) Installing libxml2 (2.9.8-r1)
508(16/23) Installing postgresql (9.6.13-r0)
509(17/23) Installing libuuid (2.28.2-r2)
510(18/23) Installing postgresql-contrib (9.6.13-r0)
511(19/23) Installing pkgconf (1.3.7-r0)
512(20/23) Installing libressl-dev (2.5.5-r2)
513(21/23) Installing postgresql-libs (9.6.13-r0)
514(22/23) Installing postgresql-dev (9.6.13-r0)
515(23/23) Installing su-exec (0.2-r0)
516Executing busybox-1.26.2-r11.trigger
517OK: 84 MiB in 48 packages
518Removing intermediate container a745375dbf1d
519 ---> ff5b92d872ce
520Step 13/42 : RUN apk add --update build-base py-pip jpeg-dev zlib-dev
521 ---> Running in 53e38aed4d50
522fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
523fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
524(1/26) Upgrading musl (1.1.16-r14 -> 1.1.16-r15)
525(2/26) Installing binutils-libs (2.30-r1)
526(3/26) Installing binutils (2.30-r1)
527(4/26) Installing gmp (6.1.2-r0)
528(5/26) Installing isl (0.17.1-r0)
529(6/26) Installing libgomp (6.3.0-r4)
530(7/26) Installing libatomic (6.3.0-r4)
531(8/26) Installing libgcc (6.3.0-r4)
532(9/26) Installing mpfr3 (3.1.5-r0)
533(10/26) Installing mpc1 (1.0.3-r0)
534(11/26) Installing libstdc++ (6.3.0-r4)
535(12/26) Installing gcc (6.3.0-r4)
536(13/26) Installing musl-dev (1.1.16-r15)
537(14/26) Installing libc-dev (0.7.1-r0)
538(15/26) Installing g++ (6.3.0-r4)
539(16/26) Installing make (4.2.1-r0)
540(17/26) Installing fortify-headers (0.8-r0)
541(18/26) Installing build-base (0.5-r0)
542(19/26) Installing libjpeg-turbo (1.5.3-r2)
543(20/26) Installing libjpeg-turbo-dev (1.5.3-r2)
544(21/26) Installing jpeg-dev (8-r6)
545(22/26) Upgrading musl-utils (1.1.16-r14 -> 1.1.16-r15)
546(23/26) Installing python2 (2.7.15-r0)
547(24/26) Installing py-setuptools (33.1.1-r1)
548(25/26) Installing py2-pip (9.0.1-r1)
549(26/26) Installing zlib-dev (1.2.11-r0)
550Executing busybox-1.26.2-r11.trigger
551OK: 291 MiB in 72 packages
552Removing intermediate container 53e38aed4d50
553 ---> 2bbde0bb3a36
554Step 14/42 : ENV LIBRARY_PATH=/lib:/usr/lib
555 ---> Running in 41bd7e79d178
556Removing intermediate container 41bd7e79d178
557 ---> dbf44f00cf00
558Step 15/42 : ENV LANG en_US.utf8
559 ---> Running in e267301649f0
560Removing intermediate container e267301649f0
561 ---> 03cb95ae4884
562Step 16/42 : ENV PGDATA /var/lib/postgresql/data
563 ---> Running in b17b4bbd37b1
564Removing intermediate container b17b4bbd37b1
565 ---> 21e2b35c3cb9
566Step 17/42 : EXPOSE $POSTGRES_PORT
567 ---> Running in 62db16f1f89f
568Removing intermediate container 62db16f1f89f
569 ---> 187304e5ece1
570Step 18/42 : VOLUME /var/lib/postgresql/data
571 ---> Running in 9121b3f61b9a
572Removing intermediate container 9121b3f61b9a
573 ---> c8c4b2f3ada1
574Step 19/42 : RUN apk add --update tzdata
575 ---> Running in 3fb8587c8cad
576fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
577fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
578(1/1) Installing tzdata (2019a-r0)
579Executing busybox-1.26.2-r11.trigger
580OK: 294 MiB in 73 packages
581Removing intermediate container 3fb8587c8cad
582 ---> a42ea3813a42
583Step 20/42 : ENV TZ=America/New_York
584 ---> Running in ace227b419e0
585Removing intermediate container ace227b419e0
586 ---> 4d2bf21dc1c4
587Step 21/42 : RUN mkdir -p /opt/code
588 ---> Running in 9b9506e807b7
589Removing intermediate container 9b9506e807b7
590 ---> f6c2b320a430
591Step 22/42 : RUN mkdir -p /opt/data
592 ---> Running in 2e224afecbf5
593Removing intermediate container 2e224afecbf5
594 ---> 18cd29e70aca
595Step 23/42 : ENV PGDATA /opt/data
596 ---> Running in c0b211efe8f8
597Removing intermediate container c0b211efe8f8
598 ---> fd02f15dab8d
599Step 24/42 : WORKDIR /opt/code
600 ---> Running in ec24adb2c9ef
601Removing intermediate container ec24adb2c9ef
602 ---> 45f8ba74e7f9
603Step 25/42 : RUN pip3 install --upgrade setuptools
604 ---> Running in 5dbe87b6f5d8
605Collecting setuptools
606 Downloading https://files.pythonhosted.org/packages/54/28/c45d8b54c1339f9644b87663945e54a8503cfef59cf0f65b3ff5dd17cf64/setuptools-42.0.2-py2.py3-none-any.whl (583kB)
607Installing collected packages: setuptools
608 Found existing installation: setuptools 40.6.3
609 Uninstalling setuptools-40.6.3:
610 Successfully uninstalled setuptools-40.6.3
611Successfully installed setuptools-42.0.2
612You are using pip version 18.1, however version 19.3.1 is available.
613You should consider upgrading via the 'pip install --upgrade pip' command.
614Removing intermediate container 5dbe87b6f5d8
615 ---> 3984572d8d0c
616Step 26/42 : RUN pip3 install --upgrade pip
617 ---> Running in e7fbfe2e0930
618Collecting pip
619 Downloading https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl (1.4MB)
620Installing collected packages: pip
621 Found existing installation: pip 18.1
622 Uninstalling pip-18.1:
623 Successfully uninstalled pip-18.1
624Successfully installed pip-19.3.1
625Removing intermediate container e7fbfe2e0930
626 ---> 474e397460ce
627Step 27/42 : RUN mkdir -p /opt/code/db
628 ---> Running in 867727c7eb76
629Removing intermediate container 867727c7eb76
630 ---> 1b3699535d7c
631Step 28/42 : WORKDIR /opt/code/db
632 ---> Running in b7230dfc66ad
633Removing intermediate container b7230dfc66ad
634 ---> 1640dc768c27
635Step 29/42 : ADD ./docker/db/postgres-setup.sh /opt/code/db/
636 ---> 38733459f169
637Step 30/42 : RUN ./postgres-setup.sh
638 ---> Running in 007b545aff5d
639The files belonging to this database system will be owned by user "postgres".
640This user must also own the server process.
641
642The database cluster will be initialized with locale "en_US.utf8".
643The default database encoding has accordingly been set to "UTF8".
644The default text search configuration will be set to "english".
645
646Data page checksums are disabled.
647
648fixing permissions on existing directory /opt/data ... ok
649creating subdirectories ... ok
650selecting default max_connections ... 100
651selecting default shared_buffers ... 128MB
652selecting dynamic shared memory implementation ... posix
653creating configuration files ... ok
654running bootstrap script ... ok
655performing post-bootstrap initialization ... No usable system locales were found.
656Use the option "--debug" to see details.
657sh: locale: not found
658ok
659syncing data to disk ...
660WARNING: enabling "trust" authentication for local connections
661You can change this by editing pg_hba.conf or using the option -A, or
662--auth-local and --auth-host, the next time you run initdb.
663ok
664
665Success.
666
667
668Creating database apidb
669
670PostgreSQL stand-alone backend 9.6.13
671backend> statement: CREATE DATABASE apidb;
672
673backend>
674
675PostgreSQL stand-alone backend 9.6.13
676backend> statement: ALTER USER postgres WITH SUPERUSER PASSWORD 'somepassword';
677
678backend>
679Removing intermediate container 007b545aff5d
680 ---> 8c45fe0779a5
681Step 31/42 : WORKDIR /opt/code
682 ---> Running in 54402bed061e
683Removing intermediate container 54402bed061e
684 ---> fc2e45534563
685Step 32/42 : ADD requirements.txt /opt/code
686 ---> ec643e5db6f9
687Step 33/42 : RUN pip3 install --upgrade setuptools
688 ---> Running in d341a84ed2a6
689Requirement already up-to-date: setuptools in /usr/local/lib/python3.6/site-packages (42.0.2)
690Removing intermediate container d341a84ed2a6
691 ---> e041b50f7e45
692Step 34/42 : RUN pip3 install --upgrade pip
693 ---> Running in 6ba14e992872
694Requirement already up-to-date: pip in /usr/local/lib/python3.6/site-packages (19.3.1)
695Removing intermediate container 6ba14e992872
696 ---> f7496e3b1072
697Step 35/42 : ADD ./vendor /opt/vendor
698 ---> 37fcd9bb4b8e
699Step 36/42 : ADD ./deps /opt/deps
700 ---> 26555f0f8690
701Step 37/42 : RUN if ls /opt/vendor/*.whl 1> /dev/null 2>&1; then pip3 install /opt/vendor/*.whl; fi
702 ---> Running in cbde5555a150
703Removing intermediate container cbde5555a150
704 ---> ffa10110bb64
705Step 38/42 : RUN apk add --no-cache --virtual .build-deps build-base linux-headers gcc && pip3 install -r requirements.txt && find /usr/local \( -type d -a -name test -o -name tests \) -o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) -exec rm -rf '{}' + && runDeps="$( scanelf --needed --nobanner --recursive /usr/local | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --virtual .rundeps $runDeps && apk del .build-deps
706 ---> Running in aeb011cdccbb
707fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
708fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
709(1/2) Installing linux-headers (4.4.6-r2)
710(2/2) Installing .build-deps (0)
711OK: 300 MiB in 75 packages
712Collecting git+https://github.com/sixfeetup/django-access-tokens.git@22c72cbd59fab7dad6b05849b40863923eccf46a (from -r requirements.txt (line 23))
713 Cloning https://github.com/sixfeetup/django-access-tokens.git (to revision 22c72cbd59fab7dad6b05849b40863923eccf46a) to /tmp/pip-req-build-54o8u6dp
714 Running command git clone -q https://github.com/sixfeetup/django-access-tokens.git /tmp/pip-req-build-54o8u6dp
715 Running command git checkout -q 22c72cbd59fab7dad6b05849b40863923eccf46a
716Collecting bleach==2.1.2
717 Downloading https://files.pythonhosted.org/packages/07/59/06f368f350cd7f226606c2bc7210c6b336312df62185de333c66d6180512/bleach-2.1.2-py2.py3-none-any.whl
718Collecting coverage==4.5.1
719 Downloading https://files.pythonhosted.org/packages/35/fe/e7df7289d717426093c68d156e0fd9117c8f4872b6588e8a8928a0f68424/coverage-4.5.1.tar.gz (379kB)
720Collecting Django==2.1
721 Downloading https://files.pythonhosted.org/packages/51/1a/e0ac7886c7123a03814178d7517dc822af0fe51a72e1a6bff26153103322/Django-2.1-py3-none-any.whl (7.3MB)
722Collecting django-categories==1.6.0
723 Downloading https://files.pythonhosted.org/packages/83/45/4d7c621063cf7cb782d160bc6aa10becaba351d4e6b6142285dc86a9a86a/django_categories-1.6-py2.py3-none-any.whl (89kB)
724Collecting django-cors-headers==2.1.0
725 Downloading https://files.pythonhosted.org/packages/10/97/40b519badff93449706cd2cab3f328e1898e627bb218e3429c5581ad1932/django_cors_headers-2.1.0-py2.py3-none-any.whl
726Collecting django-filter==2.0.0
727 Downloading https://files.pythonhosted.org/packages/6a/8b/8517167a0adc45ce94d0873efb9487dd4cdeff7e10f96e837ad3d58f5837/django_filter-2.0.0-py3-none-any.whl (69kB)
728Collecting django-fsm==2.6.0
729 Downloading https://files.pythonhosted.org/packages/cc/81/6074f9e46a81e004b84d9000e7805c6620fa56e43c5eb30a04ae176fcba1/django_fsm-2.6.0-py2.py3-none-any.whl
730Collecting django-fsm-log==1.5.0
731 Downloading https://files.pythonhosted.org/packages/8e/6a/771b3928cfc6e00e5ff9dd83e357b8713be3035ddc05f1859035f64f61e5/django_fsm_log-1.5.0-py3-none-any.whl
732Collecting django-imagekit==4.0.2
733 Downloading https://files.pythonhosted.org/packages/e5/2a/a5c62376e897c23d1ce21be86c18e68096cb8c83df7d010d24ca81139e9e/django_imagekit-4.0.2-py2.py3-none-any.whl (47kB)
734Collecting django-log-request-id==1.3.2
735 Downloading https://files.pythonhosted.org/packages/f5/bf/dee54a31dd3148446cf0662a675e158ea9e77ce284a86ff509baad1662e7/django-log-request-id-1.3.2.tar.gz
736Collecting django-oauth-toolkit==1.0.0
737 Downloading https://files.pythonhosted.org/packages/e2/f0/3bd6fb9f17c375ac0f3f4f8a4879d240a5a5508557b77e696a665fceeb23/django_oauth_toolkit-1.0.0-py2.py3-none-any.whl (45kB)
738Collecting django-permission==1.0.4
739 Downloading https://files.pythonhosted.org/packages/96/31/a00c8e034e0447ccb2fd288b684b7a2d6790d5bcf2749311b26ca3d163ec/django_permission-1.0.4-py3-none-any.whl (59kB)
740Collecting django-rest-elasticsearch==0.4.1
741 Downloading https://files.pythonhosted.org/packages/f6/28/9b1039bfaeb8aa489d15d9118e51a6a3708f052c004c8a60b9f3fd3f88b8/django-rest-elasticsearch-0.4.1.tar.gz
742Collecting django-rest-swagger==2.1.2
743 Downloading https://files.pythonhosted.org/packages/2c/12/28d0677756283d913f8371ad7590e16f5e6c8444044f5b1b1586f956e610/django_rest_swagger-2.1.2-py2.py3-none-any.whl (747kB)
744Obtaining django-session-header from git+https://github.com/kball/django-session-header.git#egg=django-session-header (from -r requirements.txt (line 15))
745 Running command git clone -q https://github.com/kball/django-session-header.git /opt/code/src/django-session-header
746 Cloning https://github.com/kball/django-session-header.git to ./src/django-session-header
747Collecting django-simple-history==2.5.1
748 Downloading https://files.pythonhosted.org/packages/54/3d/9129a60f8563fe3e02311acdee6d358c0f7e0584ff473579e98fc5b8b152/django_simple_history-2.5.1-py2.py3-none-any.whl
749Collecting django-storages==1.6.5
750 Downloading https://files.pythonhosted.org/packages/97/71/10c4c8c62b6fecca1960dcf828a7639baafddf088976a89b8dedc9124a39/django_storages-1.6.5-py2.py3-none-any.whl (47kB)
751Collecting django-taggit==0.23.0
752 Downloading https://files.pythonhosted.org/packages/39/ed/3607874788740674b7533586fc6b3e2249b5c5e9585882f0c8709e9a8c36/django_taggit-0.23.0-py2.py3-none-any.whl (44kB)
753Collecting django-taggit-serializer==0.1.7
754 Downloading https://files.pythonhosted.org/packages/68/c4/9737e1df18ca8af0f40f46a54af08a15d75eb7afd7805ba94c87fc042ae3/django-taggit-serializer-0.1.7.tar.gz
755Collecting djangorestframework==3.9.0
756 Downloading https://files.pythonhosted.org/packages/99/0b/d37a5a96c5d301e23adcabcc2f3fa659fb34e6308590f95ebb50cdbe98a1/djangorestframework-3.9.0-py2.py3-none-any.whl (924kB)
757Collecting elasticsearch-dsl==6.3.0
758 Downloading https://files.pythonhosted.org/packages/61/13/9b6864dd05295e38afe019957a7736cde8826fc21019632d0b8e84cac7c0/elasticsearch_dsl-6.3.0-py2.py3-none-any.whl (48kB)
759Collecting facebook-sdk==3.0.0
760 Downloading https://files.pythonhosted.org/packages/64/80/a4bdc341dbd283ce4bf23445b9b3f36e21ba9fe2f130435e0892675704c4/facebook_sdk-3.0.0-py3-none-any.whl
761Collecting google-api-python-client==1.7.9
762 Downloading https://files.pythonhosted.org/packages/3f/f1/20fd18744c3d20307d634ffcc02592bc7efc45a59624e14655cf21cbfb5e/google_api_python_client-1.7.9-py3-none-any.whl (56kB)
763Collecting google-auth==1.6.3
764 Downloading https://files.pythonhosted.org/packages/c5/9b/ed0516cc1f7609fb0217e3057ff4f0f9f3e3ce79a369c6af4a6c5ca25664/google_auth-1.6.3-py2.py3-none-any.whl (73kB)
765Collecting google-cloud-storage==1.6.0
766 Downloading https://files.pythonhosted.org/packages/c8/13/131c4d6b72411bcd56ab82a70a256d961e8d87e7b6356c12791c0003765d/google_cloud_storage-1.6.0-py2.py3-none-any.whl (51kB)
767Collecting oauth2client==4.1.3
768 Downloading https://files.pythonhosted.org/packages/95/a9/4f25a14d23f0786b64875b91784607c2277eff25d48f915e39ff0cff505a/oauth2client-4.1.3-py2.py3-none-any.whl (98kB)
769Collecting Pillow==4.3.0
770 Downloading https://files.pythonhosted.org/packages/e0/82/ec499c78bfe4ecaa91c2f3000040451d187ed0a816d58b8543e29c48827f/Pillow-4.3.0.tar.gz (13.9MB)
771Collecting psycopg2==2.7.3
772 Downloading https://files.pythonhosted.org/packages/98/99/33ca02c4bc3ed1bd9ceab5614bda2e6d1d31e61ec58345b9feece238c38a/psycopg2-2.7.3.tar.gz (425kB)
773Collecting pycryptodome==3.8.2
774 Downloading https://files.pythonhosted.org/packages/e2/7b/12f76a8bd427ebc54f24a0df6fd776fda48087d6a9a32ae0dbc3341dac3f/pycryptodome-3.8.2.tar.gz (12.4MB)
775Collecting pytest-django==3.1.2
776 Downloading https://files.pythonhosted.org/packages/0f/c4/123ec7829e175af511c5be0501df9552261c2bf549b8e7a43ba35505594e/pytest_django-3.1.2-py2.py3-none-any.whl
777Collecting python-gmaps==0.3.1
778 Downloading https://files.pythonhosted.org/packages/71/1a/b5ac46de53b009327e4ce4ae6598069fc60d57e006b86bc40f251a9c9959/python_gmaps-0.3.1-py2.py3-none-any.whl
779Collecting pyyaml==3.12
780 Downloading https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz (253kB)
781Collecting rollbar==0.14.1
782 Downloading https://files.pythonhosted.org/packages/88/bd/aa1e91f4d5e706a7aaf771d028ccdc100ac95c9fe286c102d9795f6ff409/rollbar-0.14.1.tar.gz (59kB)
783Collecting sendgrid-django==4.2.0
784 Downloading https://files.pythonhosted.org/packages/f5/94/4749ff4acae2c2ca89c5acdf8449494ef4fbc4254a705866f07c6774ea8b/sendgrid-django-4.2.0.tar.gz
785Collecting smtpapi==0.3.1
786 Downloading https://files.pythonhosted.org/packages/21/de/380fd07226fb481bfb12f0b8e581363bede5801f7aad53d029fd0e38be62/smtpapi-0.3.1.tar.gz
787Collecting stripe==2.35.0
788 Downloading https://files.pythonhosted.org/packages/66/d0/9347c19912b18c92af558a5eb3ea93db90bf1a1472d3c31282517d996695/stripe-2.35.0-py2.py3-none-any.whl (198kB)
789Collecting unittest-xml-reporting==2.2.0
790 Downloading https://files.pythonhosted.org/packages/d4/82/28569924f68a539bd7b0cb966cfaac4de7f805201d1384d653aae0806bac/unittest_xml_reporting-2.2.0-py2.py3-none-any.whl
791Collecting uwsgi==2.0.17.1
792 Downloading https://files.pythonhosted.org/packages/a2/c9/a2d5737f63cd9df4317a4acc15d1ddf4952e28398601d8d7d706c16381e0/uwsgi-2.0.17.1.tar.gz (800kB)
793Collecting google-cloud-talent==0.3.0
794 Downloading https://files.pythonhosted.org/packages/14/48/da8d2192d5922acd6c0a38aa2371802d5a80dc57da360a2dc078af450cf4/google_cloud_talent-0.3.0-py2.py3-none-any.whl (269kB)
795Collecting google-api-core==1.14.2
796 Downloading https://files.pythonhosted.org/packages/71/e5/7059475b3013a3c75abe35015c5761735ab224eb1b129fee7c8e376e7805/google_api_core-1.14.2-py2.py3-none-any.whl (68kB)
797Collecting grpcio==1.24.0
798 Downloading https://files.pythonhosted.org/packages/5d/44/26b8e581a12837cc44a82fcdef6edcaa8b220d4f6ded1e3267f9ce126f48/grpcio-1.24.0.tar.gz (14.1MB)
799Collecting filestack-python==3.0.1
800 Downloading https://files.pythonhosted.org/packages/63/df/d06fd4b3761b59fa4a3876529e1824ffdb1481136285b1141255640a761f/filestack_python-3.0.1-py3-none-any.whl
801Collecting six
802 Downloading https://files.pythonhosted.org/packages/65/26/32b8464df2a97e6dd1b656ed26b2c194606c16fe163c695a992b36c11cdf/six-1.13.0-py2.py3-none-any.whl
803Collecting html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre
804 Downloading https://files.pythonhosted.org/packages/a5/62/bbd2be0e7943ec8504b517e62bab011b4946e1258842bc159e5dfde15b96/html5lib-1.0.1-py2.py3-none-any.whl (117kB)
805Collecting pytz
806 Downloading https://files.pythonhosted.org/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl (509kB)
807Collecting unicode-slugify==0.1.3
808 Downloading https://files.pythonhosted.org/packages/8c/ba/1a05f61c7fd72df85ae4dc1c7967a3e5a4b6c61f016e794bc7f09b2597c0/unicode-slugify-0.1.3.tar.gz
809Collecting django-mptt<0.10,>=0.9.0
810 Downloading https://files.pythonhosted.org/packages/46/ec/415a72ff8c41be0e00900941fad48b3c696fd1da7f8e8ac1e6abc59d8981/django_mptt-0.9.1-py2.py3-none-any.whl (105kB)
811Collecting django-appconf
812 Downloading https://files.pythonhosted.org/packages/f6/b3/fcec63afcf323581c4919f21e90ef8c8200034108a6a0ab47a6bf6a9327b/django_appconf-1.0.3-py2.py3-none-any.whl
813Collecting pilkit>=0.2.0
814 Downloading https://files.pythonhosted.org/packages/c4/5c/318d9c20f309e6a79ea4d4605f86597d05f3e007d3d1925ff02474808659/pilkit-2.0.tar.gz (161kB)
815Collecting oauthlib>=2.0.1
816 Downloading https://files.pythonhosted.org/packages/05/57/ce2e7a8fa7c0afb54a0581b14a65b56e62b5759dbc98e80627142b8a3704/oauthlib-3.1.0-py2.py3-none-any.whl (147kB)
817Collecting requests>=2.13.0
818 Downloading https://files.pythonhosted.org/packages/51/bd/23c926cd341ea6b7dd0b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl (57kB)
819Collecting app-version
820 Downloading https://files.pythonhosted.org/packages/a7/03/5eeff1025f889d8d85738078c4f48e806aafe27c93ed1a52f3fbec029b06/app_version-1.0.1-py3-none-any.whl
821Collecting pytest-runner
822 Downloading https://files.pythonhosted.org/packages/16/45/81b5262c0efc08882bdf183b788e6d28e3d684863990996d8b60967d48da/pytest_runner-5.2-py2.py3-none-any.whl
823Collecting coreapi>=2.3.0
824 Downloading https://files.pythonhosted.org/packages/fc/3a/9dedaad22962770edd334222f2b3c3e7ad5e1c8cab1d6a7992c30329e2e5/coreapi-2.3.3-py2.py3-none-any.whl
825Collecting simplejson
826 Downloading https://files.pythonhosted.org/packages/98/87/a7b98aa9256c8843f92878966dc3d8d914c14aad97e2c5ce4798d5743e07/simplejson-3.17.0.tar.gz (83kB)
827Collecting openapi-codec>=1.3.1
828 Downloading https://files.pythonhosted.org/packages/78/e5/e0b5aba60c645dde952bc8a9df1f2b0bef27302908839b0a29284c9245d4/openapi-codec-1.3.2.tar.gz
829Collecting elasticsearch<7.0.0,>=6.0.0
830 Downloading https://files.pythonhosted.org/packages/e0/b3/14dd62dfee3b0bca512167edc6f8baf5149b1108a02f9f246021953d117c/elasticsearch-6.4.0-py2.py3-none-any.whl (81kB)
831Collecting python-dateutil
832 Downloading https://files.pythonhosted.org/packages/d4/70/d60450c3dd48ef87586924207ae8907090de0b306af2bce5d134d78615cb/python_dateutil-2.8.1-py2.py3-none-any.whl (227kB)
833Collecting httplib2<1dev,>=0.9.2
834 Downloading https://files.pythonhosted.org/packages/d2/84/f97b9efdb17c9b73e133bdbf2b4bfd09cd0be655e36e3ee3c4bec9095048/httplib2-0.14.0-py3-none-any.whl (94kB)
835Collecting google-auth-httplib2>=0.0.3
836 Downloading https://files.pythonhosted.org/packages/33/49/c814d6d438b823441552198f096fcd0377fd6c88714dbed34f1d3c8c4389/google_auth_httplib2-0.0.3-py2.py3-none-any.whl
837Collecting uritemplate<4dev,>=3.0.0
838 Downloading https://files.pythonhosted.org/packages/e5/7d/9d5a640c4f8bf2c8b1afc015e9a9d8de32e13c9016dcc4b0ec03481fb396/uritemplate-3.0.0-py2.py3-none-any.whl
839Collecting rsa>=3.1.4
840 Downloading https://files.pythonhosted.org/packages/02/e5/38518af393f7c214357079ce67a317307936896e961e35450b70fad2a9cf/rsa-4.0-py2.py3-none-any.whl
841Collecting cachetools>=2.0.0
842 Downloading https://files.pythonhosted.org/packages/2f/a6/30b0a0bef12283e83e58c1d6e7b5aabc7acfc4110df81a4471655d33e704/cachetools-3.1.1-py2.py3-none-any.whl
843Collecting pyasn1-modules>=0.2.1
844 Downloading https://files.pythonhosted.org/packages/52/50/bb4cefca37da63a0c52218ba2cb1b1c36110d84dcbae8aa48cd67c5e95c2/pyasn1_modules-0.2.7-py2.py3-none-any.whl (131kB)
845Collecting google-cloud-core<0.29dev,>=0.28.0
846 Downloading https://files.pythonhosted.org/packages/0f/41/ae2418b4003a14cf21c1c46d61d1b044bf02cf0f8f91598af572b9216515/google_cloud_core-0.28.1-py2.py3-none-any.whl
847Collecting google-resumable-media>=0.3.1
848 Downloading https://files.pythonhosted.org/packages/35/9e/f73325d0466ce5bdc36333f1aeb2892ead7b76e79bdb5c8b0493961fa098/google_resumable_media-0.5.0-py2.py3-none-any.whl
849Collecting pyasn1>=0.1.7
850 Downloading https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl (77kB)
851Collecting olefile
852 Downloading https://files.pythonhosted.org/packages/34/81/e1ac43c6b45b4c5f8d9352396a14144bba52c8fec72a80f425f6a4d653ad/olefile-0.46.zip (112kB)
853Collecting pytest>=2.9
854 Downloading https://files.pythonhosted.org/packages/da/ed/d22d7f06eb1107271694ed2171b9d52e8eea38d9757124e75ba13324ac77/pytest-5.3.1-py3-none-any.whl (233kB)
855Collecting sendgrid<4,>=3.5
856 Downloading https://files.pythonhosted.org/packages/d6/be/5c2cf158c9036224676b3b01042c27d722fba63b46cb87a4fdaf24fa3621/sendgrid-3.6.5-py2.py3-none-any.whl
857Requirement already satisfied: setuptools>=34.0.0 in /usr/local/lib/python3.6/site-packages (from google-api-core==1.14.2->-r requirements.txt (line 41)) (42.0.2)
858Collecting googleapis-common-protos<2.0dev,>=1.6.0
859 Downloading https://files.pythonhosted.org/packages/eb/ee/e59e74ecac678a14d6abefb9054f0bbcb318a6452a30df3776f133886d7d/googleapis-common-protos-1.6.0.tar.gz
860Collecting protobuf>=3.4.0
861 Downloading https://files.pythonhosted.org/packages/4e/26/1517e42a81de4f28ed0f3cdadb628c1b72f3a28f38323a05e251f5df0a29/protobuf-3.11.1-py2.py3-none-any.whl (434kB)
862Collecting trafaret==1.2.0
863 Downloading https://files.pythonhosted.org/packages/02/59/b502446f3985a9351ea4bfca4e90471668206d3a957e5e2ea256fc3d9d35/trafaret-1.2.0-py3-none-any.whl
864Collecting webencodings
865 Downloading https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl
866Collecting unidecode
867 Downloading https://files.pythonhosted.org/packages/d0/42/d9edfed04228bacea2d824904cae367ee9efd05e6cce7ceaaedd0b0ad964/Unidecode-1.1.1-py2.py3-none-any.whl (238kB)
868Collecting django-js-asset
869 Downloading https://files.pythonhosted.org/packages/aa/2d/98089cf51c8e83bc70723021390b94a3638a4a0ce30a47e2e70476b2095d/django_js_asset-1.2.2-py2.py3-none-any.whl
870Collecting urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1
871 Downloading https://files.pythonhosted.org/packages/b4/40/a9837291310ee1ccc242ceb6ebfd9eb21539649f193a7c8c86ba15b98539/urllib3-1.25.7-py2.py3-none-any.whl (125kB)
872Collecting certifi>=2017.4.17
873 Downloading https://files.pythonhosted.org/packages/b9/63/df50cac98ea0d5b006c55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.whl (156kB)
874Collecting idna<2.9,>=2.5
875 Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)
876Collecting chardet<3.1.0,>=3.0.2
877 Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (133kB)
878Collecting coreschema
879 Downloading https://files.pythonhosted.org/packages/93/08/1d105a70104e078718421e6c555b8b293259e7fc92f7e9a04869947f198f/coreschema-0.0.4.tar.gz
880Collecting itypes
881 Downloading https://files.pythonhosted.org/packages/d3/24/5e511590f95582efe64b8ad2f6dadd85c5563c9dcf40171ea5a70adbf5a9/itypes-1.1.0.tar.gz
882Collecting py>=1.5.0
883 Downloading https://files.pythonhosted.org/packages/76/bc/394ad449851729244a97857ee14d7cba61ddb268dce3db538ba2f2ba1f0f/py-1.8.0-py2.py3-none-any.whl (83kB)
884Collecting pluggy<1.0,>=0.12
885 Downloading https://files.pythonhosted.org/packages/a0/28/85c7aa31b80d150b772fbe4a229487bc6644da9ccb7e427dd8cc60cb8a62/pluggy-0.13.1-py2.py3-none-any.whl
886Collecting packaging
887 Downloading https://files.pythonhosted.org/packages/cf/94/9672c2d4b126e74c4496c6b3c58a8b51d6419267be9e70660ba23374c875/packaging-19.2-py2.py3-none-any.whl
888Collecting more-itertools>=4.0.0
889 Downloading https://files.pythonhosted.org/packages/5c/1d/3df99de956abb96305956e09e6a1fa955883295e1f28808f9c97b3d5364d/more_itertools-8.0.0-py3-none-any.whl (40kB)
890Collecting importlib-metadata>=0.12; python_version < "3.8"
891 Downloading https://files.pythonhosted.org/packages/ed/82/ebece33bc20b9097683d09e47563d487e411e2cf3a37789d7ec0a88c4ce4/importlib_metadata-1.1.0-py2.py3-none-any.whl
892Collecting wcwidth
893 Downloading https://files.pythonhosted.org/packages/7e/9f/526a6947247599b084ee5232e4f9190a38f398d7300d866af3ab571a5bfe/wcwidth-0.1.7-py2.py3-none-any.whl
894Collecting attrs>=17.4.0
895 Downloading https://files.pythonhosted.org/packages/a2/db/4313ab3be961f7a763066401fb77f7748373b6094076ae2bda2806988af6/attrs-19.3.0-py2.py3-none-any.whl
896Collecting python-http-client>=2.1.1
897 Downloading https://files.pythonhosted.org/packages/49/66/a7569f9b3c8e5cca347f9a171ae9e718e9ac66e1215be4ede7642b6953f2/python_http_client-3.2.1-py3-none-any.whl
898Collecting jinja2
899 Downloading https://files.pythonhosted.org/packages/65/e0/eb35e762802015cab1ccee04e8a277b03f1d8e53da3ec3106882ec42558b/Jinja2-2.10.3-py2.py3-none-any.whl (125kB)
900Collecting pyparsing>=2.0.2
901 Downloading https://files.pythonhosted.org/packages/c0/0c/fc2e007d9a992d997f04a80125b0f183da7fb554f1de701bbb70a8e7d479/pyparsing-2.4.5-py2.py3-none-any.whl (67kB)
902Collecting zipp>=0.5
903 Downloading https://files.pythonhosted.org/packages/74/3d/1ee25a26411ba0401b43c6376d2316a71addcc72ef8690b101b4ea56d76a/zipp-0.6.0-py2.py3-none-any.whl
904Collecting MarkupSafe>=0.23
905 Downloading https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz
906Building wheels for collected packages: coverage, django-log-request-id, django-rest-elasticsearch, django-taggit-serializer, Pillow, psycopg2, pycryptodome, pyyaml, rollbar, sendgrid-django, smtpapi, uwsgi, grpcio, django-access-tokens, unicode-slugify, pilkit, simplejson, openapi-codec, olefile, googleapis-common-protos, coreschema, itypes, MarkupSafe
907 Building wheel for coverage (setup.py): started
908 Building wheel for coverage (setup.py): finished with status 'done'
909 Created wheel for coverage: filename=coverage-4.5.1-cp36-cp36m-linux_x86_64.whl size=205521 sha256=ac34c97398320b7d8f9e05df2dd7803e121fff8855e03b673fb95145da37079e
910 Stored in directory: /root/.cache/pip/wheels/24/76/26/c60de6a591b00f71dcf87941eb41b8f29820857eade91fe66f
911 Building wheel for django-log-request-id (setup.py): started
912 Building wheel for django-log-request-id (setup.py): finished with status 'done'
913 Created wheel for django-log-request-id: filename=django_log_request_id-1.3.2-cp36-none-any.whl size=4773 sha256=1e6a5e523c45fdf48371928bd5fb03a7593e51c16c3dc22b4aeb4f74ee9f60f3
914 Stored in directory: /root/.cache/pip/wheels/bd/71/c4/6f55d83a1de094261cfb321b2f4513a64ddf99a63fe309ed50
915 Building wheel for django-rest-elasticsearch (setup.py): started
916 Building wheel for django-rest-elasticsearch (setup.py): finished with status 'done'
917 Created wheel for django-rest-elasticsearch: filename=django_rest_elasticsearch-0.4.1-py2.py3-none-any.whl size=20342 sha256=a6055b207710fb5be8028a77d64d149f141a63769d457fa156b20ef281720da0
918 Stored in directory: /root/.cache/pip/wheels/94/ed/12/a69316d082be71026cd06ebbb88e1e6c1fe3ecc4bd4537cfc9
919 Building wheel for django-taggit-serializer (setup.py): started
920 Building wheel for django-taggit-serializer (setup.py): finished with status 'done'
921 Created wheel for django-taggit-serializer: filename=django_taggit_serializer-0.1.7-py2.py3-none-any.whl size=4265 sha256=3afea58e464a40f682b33f1d2a8e433c63fccdf257ae35afba07776f0614ec3a
922 Stored in directory: /root/.cache/pip/wheels/80/1c/0a/17b28dfcfb239e710909442828a233178d317736cc1d2428e1
923 Building wheel for Pillow (setup.py): started
924 Building wheel for Pillow (setup.py): finished with status 'done'
925 Created wheel for Pillow: filename=Pillow-4.3.0-cp36-cp36m-linux_x86_64.whl size=1007450 sha256=a10cd73bded800ac2b55ab577ef5ec30ce5c101d70a964c8ae15bd75bd458dd4
926 Stored in directory: /root/.cache/pip/wheels/d3/76/57/6c5538f861923b84e929701ee1cdb43ade1a3f72951c3b7d7d
927 Building wheel for psycopg2 (setup.py): started
928 Building wheel for psycopg2 (setup.py): finished with status 'done'
929 Created wheel for psycopg2: filename=psycopg2-2.7.3-cp36-cp36m-linux_x86_64.whl size=486262 sha256=9e965c2cea1c51ec464e516896a20e8f09e5ae08b39b8ec1179aed441370cdcb
930 Stored in directory: /root/.cache/pip/wheels/49/5b/a8/0597f288d04bb101bb25e84e6b4fd5bdc21ea6a08f9b0110cd
931 Building wheel for pycryptodome (setup.py): started
932 Building wheel for pycryptodome (setup.py): finished with status 'done'
933 Created wheel for pycryptodome: filename=pycryptodome-3.8.2-cp36-cp36m-linux_x86_64.whl size=9670705 sha256=bf41eb5f22b635dd4b6cf75e7a984e00322bf12e0fe8424c10e522ba1856dda5
934 Stored in directory: /root/.cache/pip/wheels/b6/80/c2/c0807b56c91ff91ce86758ea48b41cde42ab50d88764847eca
935 Building wheel for pyyaml (setup.py): started
936 Building wheel for pyyaml (setup.py): finished with status 'done'
937 Created wheel for pyyaml: filename=PyYAML-3.12-cp36-cp36m-linux_x86_64.whl size=43059 sha256=80c76158847c1b7c74250e097c4ba78f7ee7b8b5b72511e2ed8143a4a5f03f2d
938 Stored in directory: /root/.cache/pip/wheels/03/05/65/bdc14f2c6e09e82ae3e0f13d021e1b6b2481437ea2f207df3f
939 Building wheel for rollbar (setup.py): started
940 Building wheel for rollbar (setup.py): finished with status 'done'
941 Created wheel for rollbar: filename=rollbar-0.14.1-cp36-none-any.whl size=65180 sha256=0e97e0c6d9fce8581d90e9025355d9613d2d7978a0dd634d4ddcbf142a021017
942 Stored in directory: /root/.cache/pip/wheels/97/13/f8/ae0f642883f19fd81cf30e64ab3f64bf83a6e706495779242e
943 Building wheel for sendgrid-django (setup.py): started
944 Building wheel for sendgrid-django (setup.py): finished with status 'done'
945 Created wheel for sendgrid-django: filename=sendgrid_django-4.2.0-py2.py3-none-any.whl size=5513 sha256=ae72ab4f0e5be3537a43e9db8998932813ab1d71c7647f57240d3d10e575e97c
946 Stored in directory: /root/.cache/pip/wheels/e2/82/2b/a256175be8210205d5a6a6c67d1f18fdd783d09b555295d736
947 Building wheel for smtpapi (setup.py): started
948 Building wheel for smtpapi (setup.py): finished with status 'done'
949 Created wheel for smtpapi: filename=smtpapi-0.3.1-cp36-none-any.whl size=2859 sha256=586c34f70e20709794692a87b2ab6cf243f8d3d8f737dc9a71a566162d48080d
950 Stored in directory: /root/.cache/pip/wheels/06/3c/46/855f13309cfa73142116b391738e2aa75698e82b24f0391b62
951 Building wheel for uwsgi (setup.py): started
952 Building wheel for uwsgi (setup.py): finished with status 'done'
953 Created wheel for uwsgi: filename=uWSGI-2.0.17.1-cp36-cp36m-linux_x86_64.whl size=552159 sha256=3a5db82825512c21ed47cf85e220574336130e278578aefd7febff9677264fd4
954 Stored in directory: /root/.cache/pip/wheels/32/d6/90/0239cc69219013d9f402b098b7c5ef7454792c21acd1d6c24e
955 Building wheel for grpcio (setup.py): started
956 Building wheel for grpcio (setup.py): still running...
957 Building wheel for grpcio (setup.py): still running...
958 Building wheel for grpcio (setup.py): still running...
959 Building wheel for grpcio (setup.py): still running...
960 Building wheel for grpcio (setup.py): still running...
961 Building wheel for grpcio (setup.py): still running...
962 Building wheel for grpcio (setup.py): still running...
963 Building wheel for grpcio (setup.py): still running...
964 Building wheel for grpcio (setup.py): still running...
965 Building wheel for grpcio (setup.py): finished with status 'done'
966 Created wheel for grpcio: filename=grpcio-1.24.0-cp36-cp36m-linux_x86_64.whl size=13221785 sha256=6565aa948dea3e8d82aa2114eb4a6a2987638024d2267d960d336bcb1cd1f4c9
967 Stored in directory: /root/.cache/pip/wheels/65/44/88/f9ed728ffaaa5d525e5fde2ba34c3157466e8d78db4325fd51
968 Building wheel for django-access-tokens (setup.py): started
969 Building wheel for django-access-tokens (setup.py): finished with status 'done'
970 Created wheel for django-access-tokens: filename=django_access_tokens-0.9.2-cp36-none-any.whl size=7731 sha256=524107f2ef37e90a6680fff93dd167fe67675fe088fcdffbc0a0d346b4e19089
971 Stored in directory: /tmp/pip-ephem-wheel-cache-szpk9nh1/wheels/f1/90/41/c7d97473801359bde178deaca159adbef65390b4de9fafb1e5
972 Building wheel for unicode-slugify (setup.py): started
973 Building wheel for unicode-slugify (setup.py): finished with status 'done'
974 Created wheel for unicode-slugify: filename=unicode_slugify-0.1.3-cp36-none-any.whl size=5004 sha256=f2bc45f1188aec9682e4fcd1f0d09d1c66775e995a97e6c75d1c813a6e1cf2e3
975 Stored in directory: /root/.cache/pip/wheels/00/86/80/77ea75d401d5d6550a79179f76c6b26fe1280d40fb447ea4f3
976 Building wheel for pilkit (setup.py): started
977 Building wheel for pilkit (setup.py): finished with status 'done'
978 Created wheel for pilkit: filename=pilkit-2.0-cp36-none-any.whl size=18295 sha256=e107e040b3f95b3897e23525019bc67cc901b62118dfedb5ad3288d13fb09193
979 Stored in directory: /root/.cache/pip/wheels/83/87/b9/db03ec06109a48529da8ba6315550ec177c6d749f50bd85932
980 Building wheel for simplejson (setup.py): started
981 Building wheel for simplejson (setup.py): finished with status 'done'
982 Created wheel for simplejson: filename=simplejson-3.17.0-cp36-cp36m-linux_x86_64.whl size=121288 sha256=56891028c1f6c2cf733aa07ce7347e3b61be2422e5f75f7d601e3fb52bf9e265
983 Stored in directory: /root/.cache/pip/wheels/86/c0/83/dcd0339abb2640544bb8e0938aab2d069cef55e5647ce6e097
984 Building wheel for openapi-codec (setup.py): started
985 Building wheel for openapi-codec (setup.py): finished with status 'done'
986 Created wheel for openapi-codec: filename=openapi_codec-1.3.2-cp36-none-any.whl size=7308 sha256=5f059b575b29243a1b4e2222f27d9c85357ca7c633777429fdc8f1f626023512
987 Stored in directory: /root/.cache/pip/wheels/6a/16/01/190a15aa7834cadccb6fcc9be4e9843fe7c20260157c799ede
988 Building wheel for olefile (setup.py): started
989 Building wheel for olefile (setup.py): finished with status 'done'
990 Created wheel for olefile: filename=olefile-0.46-py2.py3-none-any.whl size=35417 sha256=6ee314de036936d3c2209891a022f0b34b5f3e361ec748dd66ba2fdbefa78bed
991 Stored in directory: /root/.cache/pip/wheels/4b/f4/11/bc4166107c27f07fd7bba707ffcb439619197638a1ac986df3
992 Building wheel for googleapis-common-protos (setup.py): started
993 Building wheel for googleapis-common-protos (setup.py): finished with status 'done'
994 Created wheel for googleapis-common-protos: filename=googleapis_common_protos-1.6.0-cp36-none-any.whl size=77578 sha256=38fe20af4ef0323bdf63ecb6bfb8d26a524f68d47101c33efe476dc67b87cadb
995 Stored in directory: /root/.cache/pip/wheels/9e/3d/a2/1bec8bb7db80ab3216dbc33092bb7ccd0debfb8ba42b5668d5
996 Building wheel for coreschema (setup.py): started
997 Building wheel for coreschema (setup.py): finished with status 'done'
998 Created wheel for coreschema: filename=coreschema-0.0.4-cp36-none-any.whl size=15033 sha256=c7cbad33f1a3f7dd886d70034d244327be2a5fd02be38eab8ce7e6dcca795830
999 Stored in directory: /root/.cache/pip/wheels/10/7b/ba/04fcd6b33e6123ca11a5f5ab56decb1a2d87ced028377a1377
1000 Building wheel for itypes (setup.py): started
1001 Building wheel for itypes (setup.py): finished with status 'done'
1002 Created wheel for itypes: filename=itypes-1.1.0-cp36-none-any.whl size=2313 sha256=3202dd3bd2e51c1fd400afd77df94759b74c4b65610b30077ad366e4c9e77a6d
1003 Stored in directory: /root/.cache/pip/wheels/7b/52/af/4e27324812e7ab7bbbc30f748d317f3739477562325cb4c723
1004 Building wheel for MarkupSafe (setup.py): started
1005 Building wheel for MarkupSafe (setup.py): finished with status 'done'
1006 Created wheel for MarkupSafe: filename=MarkupSafe-1.1.1-cp36-cp36m-linux_x86_64.whl size=32425 sha256=56773ec7350b74c0084954d5bf0509ea85c220778c9ca3e8b33e3bca844c0471
1007 Stored in directory: /root/.cache/pip/wheels/f2/aa/04/0edf07a1b8a5f5f1aed7580fffb69ce8972edc16a505916a77
1008Successfully built coverage django-log-request-id django-rest-elasticsearch django-taggit-serializer Pillow psycopg2 pycryptodome pyyaml rollbar sendgrid-django smtpapi uwsgi grpcio django-access-tokens unicode-slugify pilkit simplejson openapi-codec olefile googleapis-common-protos coreschema itypes MarkupSafe
1009ERROR: google-cloud-storage 1.6.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.14.2 which is incompatible.
1010Installing collected packages: six, webencodings, html5lib, bleach, coverage, pytz, Django, unidecode, unicode-slugify, django-js-asset, django-mptt, django-categories, django-cors-headers, django-filter, django-fsm, django-appconf, django-fsm-log, pilkit, django-imagekit, django-log-request-id, oauthlib, urllib3, certifi, idna, chardet, requests, django-oauth-toolkit, app-version, django-permission, djangorestframework, elasticsearch, python-dateutil, elasticsearch-dsl, pytest-runner, django-rest-elasticsearch, uritemplate, MarkupSafe, jinja2, coreschema, itypes, coreapi, simplejson, openapi-codec, django-rest-swagger, django-session-header, django-simple-history, django-storages, django-taggit, django-taggit-serializer, facebook-sdk, pyasn1, rsa, cachetools, pyasn1-modules, google-auth, httplib2, google-auth-httplib2, google-api-python-client, protobuf, googleapis-common-protos, google-api-core, google-cloud-core, google-resumable-media, google-cloud-storage, oauth2client, olefile, Pillow, psycopg2, pycryptodome, py, more-itertools, zipp, importlib-metadata, pluggy, pyparsing, packaging, wcwidth, attrs, pytest, pytest-django, python-gmaps, pyyaml, rollbar, python-http-client, sendgrid, sendgrid-django, smtpapi, stripe, unittest-xml-reporting, uwsgi, google-cloud-talent, grpcio, trafaret, filestack-python, django-access-tokens
1011 Running setup.py develop for django-session-header
1012Successfully installed Django-2.1 MarkupSafe-1.1.1 Pillow-4.3.0 app-version-1.0.1 attrs-19.3.0 bleach-2.1.2 cachetools-3.1.1 certifi-2019.11.28 chardet-3.0.4 coreapi-2.3.3 coreschema-0.0.4 coverage-4.5.1 django-access-tokens-0.9.2 django-appconf-1.0.3 django-categories-1.6 django-cors-headers-2.1.0 django-filter-2.0.0 django-fsm-2.6.0 django-fsm-log-1.5.0 django-imagekit-4.0.2 django-js-asset-1.2.2 django-log-request-id-1.3.2 django-mptt-0.9.1 django-oauth-toolkit-1.0.0 django-permission-1.0.4 django-rest-elasticsearch-0.4.1 django-rest-swagger-2.1.2 django-session-header django-simple-history-2.5.1 django-storages-1.6.5 django-taggit-0.23.0 django-taggit-serializer-0.1.7 djangorestframework-3.9.0 elasticsearch-6.4.0 elasticsearch-dsl-6.3.0 facebook-sdk-3.0.0 filestack-python-3.0.1 google-api-core-1.14.2 google-api-python-client-1.7.9 google-auth-1.6.3 google-auth-httplib2-0.0.3 google-cloud-core-0.28.1 google-cloud-storage-1.6.0 google-cloud-talent-0.3.0 google-resumable-media-0.5.0 googleapis-common-protos-1.6.0 grpcio-1.24.0 html5lib-1.0.1 httplib2-0.14.0 idna-2.8 importlib-metadata-1.1.0 itypes-1.1.0 jinja2-2.10.3 more-itertools-8.0.0 oauth2client-4.1.3 oauthlib-3.1.0 olefile-0.46 openapi-codec-1.3.2 packaging-19.2 pilkit-2.0 pluggy-0.13.1 protobuf-3.11.1 psycopg2-2.7.3 py-1.8.0 pyasn1-0.4.8 pyasn1-modules-0.2.7 pycryptodome-3.8.2 pyparsing-2.4.5 pytest-5.3.1 pytest-django-3.1.2 pytest-runner-5.2 python-dateutil-2.8.1 python-gmaps-0.3.1 python-http-client-3.2.1 pytz-2019.3 pyyaml-3.12 requests-2.22.0 rollbar-0.14.1 rsa-4.0 sendgrid-3.6.5 sendgrid-django-4.2.0 simplejson-3.17.0 six-1.13.0 smtpapi-0.3.1 stripe-2.35.0 trafaret-1.2.0 unicode-slugify-0.1.3 unidecode-1.1.1 unittest-xml-reporting-2.2.0 uritemplate-3.0.0 urllib3-1.25.7 uwsgi-2.0.17.1 wcwidth-0.1.7 webencodings-0.5.1 zipp-0.6.0
1013(1/1) Installing .rundeps (0)
1014OK: 300 MiB in 76 packages
1015(1/2) Purging .build-deps (0)
1016(2/2) Purging linux-headers (4.4.6-r2)
1017OK: 294 MiB in 74 packages
1018Removing intermediate container aeb011cdccbb
1019 ---> 90f5c49f8d88
1020Step 39/42 : ADD ./src/ /opt/code/
1021 ---> c3554e876b20
1022Step 40/42 : ADD ./docker/db/* /opt/code/db/
1023 ---> 97d996c71141
1024Step 41/42 : RUN /opt/code/db/prepare_django_db.sh
1025 ---> Running in 746e98b71a60
1026Waiting till up
1027psql: could not connect to server: No such file or directory
1028 Is the server running locally and accepting
1029 connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
1030Postgres is unavailable - sleeping
1031LOG: database system was shut down at 2019-12-03 21:12:30 EST
1032LOG: MultiXact member wraparound protections are now enabled
1033LOG: database system is ready to accept connections
1034LOG: autovacuum launcher started
1035 List of databases
1036 Name | Owner | Encoding | Collate | Ctype | Access privileges
1037-----------+----------+----------+------------+------------+-----------------------
1038 apidb | postgres | UTF8 | en_US.utf8 | en_US.utf8 |
1039 postgres | postgres | UTF8 | en_US.utf8 | en_US.utf8 |
1040 template0 | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =c/postgres +
1041 | | | | | postgres=CTc/postgres
1042 template1 | postgres | UTF8 | en_US.utf8 | en_US.utf8 | =c/postgres +
1043 | | | | | postgres=CTc/postgres
1044(4 rows)
1045
1046Migrating DB
1047SETTINGS INFO ALLOWED_HOSTS: []
1048api: WARNING [2019-12-04 02:27:19,542] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.018s]
1049Traceback (most recent call last):
1050 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1051 (self._dns_host, self.port), self.timeout, **extra_kw
1052 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1053 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1054 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1055 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1056socket.gaierror: [Errno -2] Name does not resolve
1057
1058During handling of the above exception, another exception occurred:
1059
1060Traceback (most recent call last):
1061 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1062 method, url, body, retries=Retry(False), headers=request_headers, **kw
1063 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1064 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1065 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1066 raise six.reraise(type(error), error, _stacktrace)
1067 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1068 raise value
1069 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1070 chunked=chunked,
1071 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1072 conn.request(method, url, **httplib_request_kw)
1073 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1074 self._send_request(method, url, body, headers, encode_chunked)
1075 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1076 self.endheaders(body, encode_chunked=encode_chunked)
1077 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1078 self._send_output(message_body, encode_chunked=encode_chunked)
1079 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1080 self.send(msg)
1081 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1082 self.connect()
1083 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1084 conn = self._new_conn()
1085 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1086 self, "Failed to establish a new connection: %s" % e
1087urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3b668>: Failed to establish a new connection: [Errno -2] Name does not resolve
1088api: WARNING [2019-12-04 02:27:20,552] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.004s]
1089Traceback (most recent call last):
1090 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1091 (self._dns_host, self.port), self.timeout, **extra_kw
1092 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1093 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1094 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1095 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1096socket.gaierror: [Errno -2] Name does not resolve
1097
1098During handling of the above exception, another exception occurred:
1099
1100Traceback (most recent call last):
1101 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1102 method, url, body, retries=Retry(False), headers=request_headers, **kw
1103 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1104 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1105 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1106 raise six.reraise(type(error), error, _stacktrace)
1107 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1108 raise value
1109 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1110 chunked=chunked,
1111 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1112 conn.request(method, url, **httplib_request_kw)
1113 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1114 self._send_request(method, url, body, headers, encode_chunked)
1115 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1116 self.endheaders(body, encode_chunked=encode_chunked)
1117 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1118 self._send_output(message_body, encode_chunked=encode_chunked)
1119 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1120 self.send(msg)
1121 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1122 self.connect()
1123 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1124 conn = self._new_conn()
1125 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1126 self, "Failed to establish a new connection: %s" % e
1127urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3b898>: Failed to establish a new connection: [Errno -2] Name does not resolve
1128api: WARNING [2019-12-04 02:27:23,538] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
1129Traceback (most recent call last):
1130 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1131 (self._dns_host, self.port), self.timeout, **extra_kw
1132 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1133 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1134 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1135 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1136socket.gaierror: [Errno -2] Name does not resolve
1137
1138During handling of the above exception, another exception occurred:
1139
1140Traceback (most recent call last):
1141 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1142 method, url, body, retries=Retry(False), headers=request_headers, **kw
1143 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1144 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1145 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1146 raise six.reraise(type(error), error, _stacktrace)
1147 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1148 raise value
1149 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1150 chunked=chunked,
1151 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1152 conn.request(method, url, **httplib_request_kw)
1153 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1154 self._send_request(method, url, body, headers, encode_chunked)
1155 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1156 self.endheaders(body, encode_chunked=encode_chunked)
1157 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1158 self._send_output(message_body, encode_chunked=encode_chunked)
1159 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1160 self.send(msg)
1161 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1162 self.connect()
1163 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1164 conn = self._new_conn()
1165 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1166 self, "Failed to establish a new connection: %s" % e
1167urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3b978>: Failed to establish a new connection: [Errno -2] Name does not resolve
1168api: WARNING [2019-12-04 02:27:30,556] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
1169Traceback (most recent call last):
1170 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1171 (self._dns_host, self.port), self.timeout, **extra_kw
1172 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1173 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1174 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1175 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1176socket.gaierror: [Errno -2] Name does not resolve
1177
1178During handling of the above exception, another exception occurred:
1179
1180Traceback (most recent call last):
1181 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1182 method, url, body, retries=Retry(False), headers=request_headers, **kw
1183 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1184 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1185 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1186 raise six.reraise(type(error), error, _stacktrace)
1187 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1188 raise value
1189 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1190 chunked=chunked,
1191 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1192 conn.request(method, url, **httplib_request_kw)
1193 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1194 self._send_request(method, url, body, headers, encode_chunked)
1195 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1196 self.endheaders(body, encode_chunked=encode_chunked)
1197 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1198 self._send_output(message_body, encode_chunked=encode_chunked)
1199 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1200 self.send(msg)
1201 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1202 self.connect()
1203 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1204 conn = self._new_conn()
1205 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1206 self, "Failed to establish a new connection: %s" % e
1207urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3bcf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
1208api: WARNING [2019-12-04 02:27:30,576] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
1209Traceback (most recent call last):
1210 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1211 (self._dns_host, self.port), self.timeout, **extra_kw
1212 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1213 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1214 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1215 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1216socket.gaierror: [Errno -2] Name does not resolve
1217
1218During handling of the above exception, another exception occurred:
1219
1220Traceback (most recent call last):
1221 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1222 method, url, body, retries=Retry(False), headers=request_headers, **kw
1223 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1224 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1225 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1226 raise six.reraise(type(error), error, _stacktrace)
1227 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1228 raise value
1229 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1230 chunked=chunked,
1231 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1232 conn.request(method, url, **httplib_request_kw)
1233 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1234 self._send_request(method, url, body, headers, encode_chunked)
1235 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1236 self.endheaders(body, encode_chunked=encode_chunked)
1237 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1238 self._send_output(message_body, encode_chunked=encode_chunked)
1239 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1240 self.send(msg)
1241 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1242 self.connect()
1243 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1244 conn = self._new_conn()
1245 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1246 self, "Failed to establish a new connection: %s" % e
1247urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee358>: Failed to establish a new connection: [Errno -2] Name does not resolve
1248api: WARNING [2019-12-04 02:27:31,586] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
1249Traceback (most recent call last):
1250 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1251 (self._dns_host, self.port), self.timeout, **extra_kw
1252 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1253 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1254 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1255 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1256socket.gaierror: [Errno -2] Name does not resolve
1257
1258During handling of the above exception, another exception occurred:
1259
1260Traceback (most recent call last):
1261 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1262 method, url, body, retries=Retry(False), headers=request_headers, **kw
1263 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1264 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1265 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1266 raise six.reraise(type(error), error, _stacktrace)
1267 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1268 raise value
1269 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1270 chunked=chunked,
1271 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1272 conn.request(method, url, **httplib_request_kw)
1273 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1274 self._send_request(method, url, body, headers, encode_chunked)
1275 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1276 self.endheaders(body, encode_chunked=encode_chunked)
1277 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1278 self._send_output(message_body, encode_chunked=encode_chunked)
1279 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1280 self.send(msg)
1281 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1282 self.connect()
1283 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1284 conn = self._new_conn()
1285 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1286 self, "Failed to establish a new connection: %s" % e
1287urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee400>: Failed to establish a new connection: [Errno -2] Name does not resolve
1288api: WARNING [2019-12-04 02:27:34,598] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.004s]
1289Traceback (most recent call last):
1290 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1291 (self._dns_host, self.port), self.timeout, **extra_kw
1292 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1293 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1294 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1295 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1296socket.gaierror: [Errno -2] Name does not resolve
1297
1298During handling of the above exception, another exception occurred:
1299
1300Traceback (most recent call last):
1301 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1302 method, url, body, retries=Retry(False), headers=request_headers, **kw
1303 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1304 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1305 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1306 raise six.reraise(type(error), error, _stacktrace)
1307 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1308 raise value
1309 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1310 chunked=chunked,
1311 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1312 conn.request(method, url, **httplib_request_kw)
1313 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1314 self._send_request(method, url, body, headers, encode_chunked)
1315 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1316 self.endheaders(body, encode_chunked=encode_chunked)
1317 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1318 self._send_output(message_body, encode_chunked=encode_chunked)
1319 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1320 self.send(msg)
1321 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1322 self.connect()
1323 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1324 conn = self._new_conn()
1325 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1326 self, "Failed to establish a new connection: %s" % e
1327urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee4e0>: Failed to establish a new connection: [Errno -2] Name does not resolve
1328api: WARNING [2019-12-04 02:27:41,617] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
1329Traceback (most recent call last):
1330 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1331 (self._dns_host, self.port), self.timeout, **extra_kw
1332 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1333 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1334 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1335 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1336socket.gaierror: [Errno -2] Name does not resolve
1337
1338During handling of the above exception, another exception occurred:
1339
1340Traceback (most recent call last):
1341 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1342 method, url, body, retries=Retry(False), headers=request_headers, **kw
1343 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1344 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1345 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1346 raise six.reraise(type(error), error, _stacktrace)
1347 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1348 raise value
1349 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1350 chunked=chunked,
1351 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1352 conn.request(method, url, **httplib_request_kw)
1353 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1354 self._send_request(method, url, body, headers, encode_chunked)
1355 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1356 self.endheaders(body, encode_chunked=encode_chunked)
1357 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1358 self._send_output(message_body, encode_chunked=encode_chunked)
1359 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1360 self.send(msg)
1361 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1362 self.connect()
1363 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1364 conn = self._new_conn()
1365 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1366 self, "Failed to establish a new connection: %s" % e
1367urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee5c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
1368api: WARNING [2019-12-04 02:27:41,684] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
1369Traceback (most recent call last):
1370 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1371 (self._dns_host, self.port), self.timeout, **extra_kw
1372 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1373 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1374 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1375 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1376socket.gaierror: [Errno -2] Name does not resolve
1377
1378During handling of the above exception, another exception occurred:
1379
1380Traceback (most recent call last):
1381 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1382 method, url, body, retries=Retry(False), headers=request_headers, **kw
1383 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1384 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1385 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1386 raise six.reraise(type(error), error, _stacktrace)
1387 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1388 raise value
1389 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1390 chunked=chunked,
1391 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1392 conn.request(method, url, **httplib_request_kw)
1393 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1394 self._send_request(method, url, body, headers, encode_chunked)
1395 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1396 self.endheaders(body, encode_chunked=encode_chunked)
1397 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1398 self._send_output(message_body, encode_chunked=encode_chunked)
1399 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1400 self.send(msg)
1401 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1402 self.connect()
1403 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1404 conn = self._new_conn()
1405 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1406 self, "Failed to establish a new connection: %s" % e
1407urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf048>: Failed to establish a new connection: [Errno -2] Name does not resolve
1408api: WARNING [2019-12-04 02:27:42,696] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
1409Traceback (most recent call last):
1410 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1411 (self._dns_host, self.port), self.timeout, **extra_kw
1412 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1413 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1414 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1415 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1416socket.gaierror: [Errno -2] Name does not resolve
1417
1418During handling of the above exception, another exception occurred:
1419
1420Traceback (most recent call last):
1421 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1422 method, url, body, retries=Retry(False), headers=request_headers, **kw
1423 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1424 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1425 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1426 raise six.reraise(type(error), error, _stacktrace)
1427 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1428 raise value
1429 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1430 chunked=chunked,
1431 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1432 conn.request(method, url, **httplib_request_kw)
1433 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1434 self._send_request(method, url, body, headers, encode_chunked)
1435 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1436 self.endheaders(body, encode_chunked=encode_chunked)
1437 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1438 self._send_output(message_body, encode_chunked=encode_chunked)
1439 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1440 self.send(msg)
1441 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1442 self.connect()
1443 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1444 conn = self._new_conn()
1445 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1446 self, "Failed to establish a new connection: %s" % e
1447urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf0f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
1448api: WARNING [2019-12-04 02:27:45,712] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
1449Traceback (most recent call last):
1450 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1451 (self._dns_host, self.port), self.timeout, **extra_kw
1452 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1453 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1454 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1455 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1456socket.gaierror: [Errno -2] Name does not resolve
1457
1458During handling of the above exception, another exception occurred:
1459
1460Traceback (most recent call last):
1461 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1462 method, url, body, retries=Retry(False), headers=request_headers, **kw
1463 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1464 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1465 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1466 raise six.reraise(type(error), error, _stacktrace)
1467 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1468 raise value
1469 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1470 chunked=chunked,
1471 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1472 conn.request(method, url, **httplib_request_kw)
1473 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1474 self._send_request(method, url, body, headers, encode_chunked)
1475 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1476 self.endheaders(body, encode_chunked=encode_chunked)
1477 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1478 self._send_output(message_body, encode_chunked=encode_chunked)
1479 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1480 self.send(msg)
1481 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1482 self.connect()
1483 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1484 conn = self._new_conn()
1485 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1486 self, "Failed to establish a new connection: %s" % e
1487urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf1d0>: Failed to establish a new connection: [Errno -2] Name does not resolve
1488api: WARNING [2019-12-04 02:27:52,694] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
1489Traceback (most recent call last):
1490 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1491 (self._dns_host, self.port), self.timeout, **extra_kw
1492 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1493 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1494 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1495 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1496socket.gaierror: [Errno -2] Name does not resolve
1497
1498During handling of the above exception, another exception occurred:
1499
1500Traceback (most recent call last):
1501 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1502 method, url, body, retries=Retry(False), headers=request_headers, **kw
1503 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1504 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1505 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1506 raise six.reraise(type(error), error, _stacktrace)
1507 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1508 raise value
1509 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1510 chunked=chunked,
1511 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1512 conn.request(method, url, **httplib_request_kw)
1513 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1514 self._send_request(method, url, body, headers, encode_chunked)
1515 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1516 self.endheaders(body, encode_chunked=encode_chunked)
1517 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1518 self._send_output(message_body, encode_chunked=encode_chunked)
1519 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1520 self.send(msg)
1521 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1522 self.connect()
1523 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1524 conn = self._new_conn()
1525 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1526 self, "Failed to establish a new connection: %s" % e
1527urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf2b0>: Failed to establish a new connection: [Errno -2] Name does not resolve
1528Traceback (most recent call last):
1529 File "manage.py", line 53, in <module>
1530 execute_from_command_line(sys.argv)
1531 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
1532 utility.execute()
1533 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 375, in execute
1534 self.fetch_command(subcommand).run_from_argv(self.argv)
1535 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 316, in run_from_argv
1536 self.execute(*args, **cmd_options)
1537 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 350, in execute
1538 self.check()
1539 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 379, in check
1540 include_deployment_checks=include_deployment_checks,
1541 File "/usr/local/lib/python3.6/site-packages/django/core/management/commands/migrate.py", line 60, in _run_checks
1542 issues.extend(super()._run_checks(**kwargs))
1543 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 366, in _run_checks
1544 return checks.run_checks(**kwargs)
1545 File "/usr/local/lib/python3.6/site-packages/django/core/checks/registry.py", line 71, in run_checks
1546 new_errors = check(app_configs=app_configs)
1547 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 13, in check_url_config
1548 return check_resolver(resolver)
1549 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 23, in check_resolver
1550 return check_method()
1551 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 396, in check
1552 for pattern in self.url_patterns:
1553 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
1554 res = instance.__dict__[self.name] = self.func(instance)
1555 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 533, in url_patterns
1556 patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
1557 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
1558 res = instance.__dict__[self.name] = self.func(instance)
1559 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 526, in urlconf_module
1560 return import_module(self.urlconf_name)
1561 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
1562 return _bootstrap._gcd_import(name[level:], package, level)
1563 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
1564 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
1565 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
1566 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
1567 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
1568 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
1569 File "/opt/code/api/urls.py", line 29, in <module>
1570 url(r'^api/v1/', include('getit.urls')),
1571 File "/usr/local/lib/python3.6/site-packages/django/urls/conf.py", line 34, in include
1572 urlconf_module = import_module(urlconf_module)
1573 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
1574 return _bootstrap._gcd_import(name[level:], package, level)
1575 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
1576 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
1577 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
1578 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
1579 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
1580 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
1581 File "/opt/code/getit/urls.py", line 31, in <module>
1582 from getit.views.resume import ResumeView, upload_resume
1583 File "/opt/code/getit/views/resume.py", line 15, in <module>
1584 from getit.parser.parser import parse_file, create_file_dir
1585 File "/opt/code/getit/parser/parser.py", line 16, in <module>
1586 raise Exception("environment variable FILESTACK_API_KEY is not set")
1587Exception: environment variable FILESTACK_API_KEY is not set
1588Migrating to test DB
1589CREATE DATABASE
1590Loading fixtures
1591SETTINGS INFO ALLOWED_HOSTS: []
1592api: WARNING [2019-12-04 02:27:59,251] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
1593Traceback (most recent call last):
1594 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1595 (self._dns_host, self.port), self.timeout, **extra_kw
1596 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1597 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1598 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1599 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1600socket.gaierror: [Errno -2] Name does not resolve
1601
1602During handling of the above exception, another exception occurred:
1603
1604Traceback (most recent call last):
1605 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1606 method, url, body, retries=Retry(False), headers=request_headers, **kw
1607 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1608 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1609 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1610 raise six.reraise(type(error), error, _stacktrace)
1611 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1612 raise value
1613 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1614 chunked=chunked,
1615 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1616 conn.request(method, url, **httplib_request_kw)
1617 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1618 self._send_request(method, url, body, headers, encode_chunked)
1619 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1620 self.endheaders(body, encode_chunked=encode_chunked)
1621 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1622 self._send_output(message_body, encode_chunked=encode_chunked)
1623 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1624 self.send(msg)
1625 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1626 self.connect()
1627 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1628 conn = self._new_conn()
1629 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1630 self, "Failed to establish a new connection: %s" % e
1631urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf0f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
1632api: WARNING [2019-12-04 02:28:00,271] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
1633Traceback (most recent call last):
1634 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1635 (self._dns_host, self.port), self.timeout, **extra_kw
1636 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1637 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1638 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1639 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1640socket.gaierror: [Errno -2] Name does not resolve
1641
1642During handling of the above exception, another exception occurred:
1643
1644Traceback (most recent call last):
1645 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1646 method, url, body, retries=Retry(False), headers=request_headers, **kw
1647 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1648 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1649 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1650 raise six.reraise(type(error), error, _stacktrace)
1651 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1652 raise value
1653 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1654 chunked=chunked,
1655 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1656 conn.request(method, url, **httplib_request_kw)
1657 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1658 self._send_request(method, url, body, headers, encode_chunked)
1659 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1660 self.endheaders(body, encode_chunked=encode_chunked)
1661 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1662 self._send_output(message_body, encode_chunked=encode_chunked)
1663 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1664 self.send(msg)
1665 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1666 self.connect()
1667 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1668 conn = self._new_conn()
1669 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1670 self, "Failed to establish a new connection: %s" % e
1671urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf320>: Failed to establish a new connection: [Errno -2] Name does not resolve
1672api: WARNING [2019-12-04 02:28:03,277] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
1673Traceback (most recent call last):
1674 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1675 (self._dns_host, self.port), self.timeout, **extra_kw
1676 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1677 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1678 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1679 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1680socket.gaierror: [Errno -2] Name does not resolve
1681
1682During handling of the above exception, another exception occurred:
1683
1684Traceback (most recent call last):
1685 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1686 method, url, body, retries=Retry(False), headers=request_headers, **kw
1687 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1688 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1689 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1690 raise six.reraise(type(error), error, _stacktrace)
1691 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1692 raise value
1693 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1694 chunked=chunked,
1695 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1696 conn.request(method, url, **httplib_request_kw)
1697 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1698 self._send_request(method, url, body, headers, encode_chunked)
1699 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1700 self.endheaders(body, encode_chunked=encode_chunked)
1701 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1702 self._send_output(message_body, encode_chunked=encode_chunked)
1703 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1704 self.send(msg)
1705 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1706 self.connect()
1707 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1708 conn = self._new_conn()
1709 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1710 self, "Failed to establish a new connection: %s" % e
1711urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf400>: Failed to establish a new connection: [Errno -2] Name does not resolve
1712api: WARNING [2019-12-04 02:28:10,301] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
1713Traceback (most recent call last):
1714 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1715 (self._dns_host, self.port), self.timeout, **extra_kw
1716 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1717 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1718 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1719 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1720socket.gaierror: [Errno -2] Name does not resolve
1721
1722During handling of the above exception, another exception occurred:
1723
1724Traceback (most recent call last):
1725 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1726 method, url, body, retries=Retry(False), headers=request_headers, **kw
1727 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1728 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1729 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1730 raise six.reraise(type(error), error, _stacktrace)
1731 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1732 raise value
1733 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1734 chunked=chunked,
1735 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1736 conn.request(method, url, **httplib_request_kw)
1737 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1738 self._send_request(method, url, body, headers, encode_chunked)
1739 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1740 self.endheaders(body, encode_chunked=encode_chunked)
1741 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1742 self._send_output(message_body, encode_chunked=encode_chunked)
1743 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1744 self.send(msg)
1745 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1746 self.connect()
1747 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1748 conn = self._new_conn()
1749 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1750 self, "Failed to establish a new connection: %s" % e
1751urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf588>: Failed to establish a new connection: [Errno -2] Name does not resolve
1752api: WARNING [2019-12-04 02:28:10,327] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
1753Traceback (most recent call last):
1754 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1755 (self._dns_host, self.port), self.timeout, **extra_kw
1756 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1757 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1758 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1759 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1760socket.gaierror: [Errno -2] Name does not resolve
1761
1762During handling of the above exception, another exception occurred:
1763
1764Traceback (most recent call last):
1765 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1766 method, url, body, retries=Retry(False), headers=request_headers, **kw
1767 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1768 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1769 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1770 raise six.reraise(type(error), error, _stacktrace)
1771 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1772 raise value
1773 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1774 chunked=chunked,
1775 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1776 conn.request(method, url, **httplib_request_kw)
1777 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1778 self._send_request(method, url, body, headers, encode_chunked)
1779 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1780 self.endheaders(body, encode_chunked=encode_chunked)
1781 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1782 self._send_output(message_body, encode_chunked=encode_chunked)
1783 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1784 self.send(msg)
1785 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1786 self.connect()
1787 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1788 conn = self._new_conn()
1789 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1790 self, "Failed to establish a new connection: %s" % e
1791urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50b70>: Failed to establish a new connection: [Errno -2] Name does not resolve
1792api: WARNING [2019-12-04 02:28:11,341] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
1793Traceback (most recent call last):
1794 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1795 (self._dns_host, self.port), self.timeout, **extra_kw
1796 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1797 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1798 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1799 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1800socket.gaierror: [Errno -2] Name does not resolve
1801
1802During handling of the above exception, another exception occurred:
1803
1804Traceback (most recent call last):
1805 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1806 method, url, body, retries=Retry(False), headers=request_headers, **kw
1807 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1808 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1809 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1810 raise six.reraise(type(error), error, _stacktrace)
1811 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1812 raise value
1813 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1814 chunked=chunked,
1815 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1816 conn.request(method, url, **httplib_request_kw)
1817 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1818 self._send_request(method, url, body, headers, encode_chunked)
1819 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1820 self.endheaders(body, encode_chunked=encode_chunked)
1821 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1822 self._send_output(message_body, encode_chunked=encode_chunked)
1823 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1824 self.send(msg)
1825 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1826 self.connect()
1827 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1828 conn = self._new_conn()
1829 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1830 self, "Failed to establish a new connection: %s" % e
1831urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50c18>: Failed to establish a new connection: [Errno -2] Name does not resolve
1832api: WARNING [2019-12-04 02:28:14,360] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
1833Traceback (most recent call last):
1834 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1835 (self._dns_host, self.port), self.timeout, **extra_kw
1836 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1837 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1838 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1839 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1840socket.gaierror: [Errno -2] Name does not resolve
1841
1842During handling of the above exception, another exception occurred:
1843
1844Traceback (most recent call last):
1845 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1846 method, url, body, retries=Retry(False), headers=request_headers, **kw
1847 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1848 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1849 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1850 raise six.reraise(type(error), error, _stacktrace)
1851 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1852 raise value
1853 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1854 chunked=chunked,
1855 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1856 conn.request(method, url, **httplib_request_kw)
1857 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1858 self._send_request(method, url, body, headers, encode_chunked)
1859 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1860 self.endheaders(body, encode_chunked=encode_chunked)
1861 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1862 self._send_output(message_body, encode_chunked=encode_chunked)
1863 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1864 self.send(msg)
1865 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1866 self.connect()
1867 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1868 conn = self._new_conn()
1869 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1870 self, "Failed to establish a new connection: %s" % e
1871urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50cf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
1872api: WARNING [2019-12-04 02:28:21,384] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
1873Traceback (most recent call last):
1874 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1875 (self._dns_host, self.port), self.timeout, **extra_kw
1876 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1877 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1878 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1879 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1880socket.gaierror: [Errno -2] Name does not resolve
1881
1882During handling of the above exception, another exception occurred:
1883
1884Traceback (most recent call last):
1885 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1886 method, url, body, retries=Retry(False), headers=request_headers, **kw
1887 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1888 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1889 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1890 raise six.reraise(type(error), error, _stacktrace)
1891 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1892 raise value
1893 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1894 chunked=chunked,
1895 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1896 conn.request(method, url, **httplib_request_kw)
1897 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1898 self._send_request(method, url, body, headers, encode_chunked)
1899 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1900 self.endheaders(body, encode_chunked=encode_chunked)
1901 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1902 self._send_output(message_body, encode_chunked=encode_chunked)
1903 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1904 self.send(msg)
1905 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1906 self.connect()
1907 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1908 conn = self._new_conn()
1909 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1910 self, "Failed to establish a new connection: %s" % e
1911urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50dd8>: Failed to establish a new connection: [Errno -2] Name does not resolve
1912api: WARNING [2019-12-04 02:28:21,443] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.005s]
1913Traceback (most recent call last):
1914 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1915 (self._dns_host, self.port), self.timeout, **extra_kw
1916 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1917 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1918 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1919 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1920socket.gaierror: [Errno -2] Name does not resolve
1921
1922During handling of the above exception, another exception occurred:
1923
1924Traceback (most recent call last):
1925 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1926 method, url, body, retries=Retry(False), headers=request_headers, **kw
1927 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1928 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1929 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1930 raise six.reraise(type(error), error, _stacktrace)
1931 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1932 raise value
1933 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1934 chunked=chunked,
1935 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1936 conn.request(method, url, **httplib_request_kw)
1937 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1938 self._send_request(method, url, body, headers, encode_chunked)
1939 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1940 self.endheaders(body, encode_chunked=encode_chunked)
1941 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1942 self._send_output(message_body, encode_chunked=encode_chunked)
1943 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1944 self.send(msg)
1945 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1946 self.connect()
1947 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1948 conn = self._new_conn()
1949 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1950 self, "Failed to establish a new connection: %s" % e
1951urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea753c8>: Failed to establish a new connection: [Errno -2] Name does not resolve
1952api: WARNING [2019-12-04 02:28:22,418] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.005s]
1953Traceback (most recent call last):
1954 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1955 (self._dns_host, self.port), self.timeout, **extra_kw
1956 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1957 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1958 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1959 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
1960socket.gaierror: [Errno -2] Name does not resolve
1961
1962During handling of the above exception, another exception occurred:
1963
1964Traceback (most recent call last):
1965 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
1966 method, url, body, retries=Retry(False), headers=request_headers, **kw
1967 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
1968 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
1969 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
1970 raise six.reraise(type(error), error, _stacktrace)
1971 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
1972 raise value
1973 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
1974 chunked=chunked,
1975 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
1976 conn.request(method, url, **httplib_request_kw)
1977 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
1978 self._send_request(method, url, body, headers, encode_chunked)
1979 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
1980 self.endheaders(body, encode_chunked=encode_chunked)
1981 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
1982 self._send_output(message_body, encode_chunked=encode_chunked)
1983 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
1984 self.send(msg)
1985 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
1986 self.connect()
1987 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
1988 conn = self._new_conn()
1989 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
1990 self, "Failed to establish a new connection: %s" % e
1991urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea75470>: Failed to establish a new connection: [Errno -2] Name does not resolve
1992api: WARNING [2019-12-04 02:28:25,428] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
1993Traceback (most recent call last):
1994 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
1995 (self._dns_host, self.port), self.timeout, **extra_kw
1996 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
1997 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
1998 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
1999 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2000socket.gaierror: [Errno -2] Name does not resolve
2001
2002During handling of the above exception, another exception occurred:
2003
2004Traceback (most recent call last):
2005 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2006 method, url, body, retries=Retry(False), headers=request_headers, **kw
2007 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2008 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2009 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2010 raise six.reraise(type(error), error, _stacktrace)
2011 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2012 raise value
2013 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2014 chunked=chunked,
2015 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2016 conn.request(method, url, **httplib_request_kw)
2017 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2018 self._send_request(method, url, body, headers, encode_chunked)
2019 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2020 self.endheaders(body, encode_chunked=encode_chunked)
2021 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2022 self._send_output(message_body, encode_chunked=encode_chunked)
2023 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2024 self.send(msg)
2025 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2026 self.connect()
2027 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2028 conn = self._new_conn()
2029 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2030 self, "Failed to establish a new connection: %s" % e
2031urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea75588>: Failed to establish a new connection: [Errno -2] Name does not resolve
2032api: WARNING [2019-12-04 02:28:32,450] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
2033Traceback (most recent call last):
2034 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2035 (self._dns_host, self.port), self.timeout, **extra_kw
2036 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2037 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2038 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2039 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2040socket.gaierror: [Errno -2] Name does not resolve
2041
2042During handling of the above exception, another exception occurred:
2043
2044Traceback (most recent call last):
2045 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2046 method, url, body, retries=Retry(False), headers=request_headers, **kw
2047 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2048 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2049 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2050 raise six.reraise(type(error), error, _stacktrace)
2051 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2052 raise value
2053 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2054 chunked=chunked,
2055 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2056 conn.request(method, url, **httplib_request_kw)
2057 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2058 self._send_request(method, url, body, headers, encode_chunked)
2059 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2060 self.endheaders(body, encode_chunked=encode_chunked)
2061 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2062 self._send_output(message_body, encode_chunked=encode_chunked)
2063 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2064 self.send(msg)
2065 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2066 self.connect()
2067 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2068 conn = self._new_conn()
2069 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2070 self, "Failed to establish a new connection: %s" % e
2071urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea755c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
2072Traceback (most recent call last):
2073 File "manage.py", line 53, in <module>
2074 execute_from_command_line(sys.argv)
2075 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
2076 utility.execute()
2077 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 375, in execute
2078 self.fetch_command(subcommand).run_from_argv(self.argv)
2079 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 316, in run_from_argv
2080 self.execute(*args, **cmd_options)
2081 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 350, in execute
2082 self.check()
2083 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 379, in check
2084 include_deployment_checks=include_deployment_checks,
2085 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 366, in _run_checks
2086 return checks.run_checks(**kwargs)
2087 File "/usr/local/lib/python3.6/site-packages/django/core/checks/registry.py", line 71, in run_checks
2088 new_errors = check(app_configs=app_configs)
2089 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 40, in check_url_namespaces_unique
2090 all_namespaces = _load_all_namespaces(resolver)
2091 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 57, in _load_all_namespaces
2092 url_patterns = getattr(resolver, 'url_patterns', [])
2093 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
2094 res = instance.__dict__[self.name] = self.func(instance)
2095 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 533, in url_patterns
2096 patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
2097 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
2098 res = instance.__dict__[self.name] = self.func(instance)
2099 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 526, in urlconf_module
2100 return import_module(self.urlconf_name)
2101 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
2102 return _bootstrap._gcd_import(name[level:], package, level)
2103 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
2104 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
2105 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
2106 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
2107 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
2108 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
2109 File "/opt/code/api/urls.py", line 29, in <module>
2110 url(r'^api/v1/', include('getit.urls')),
2111 File "/usr/local/lib/python3.6/site-packages/django/urls/conf.py", line 34, in include
2112 urlconf_module = import_module(urlconf_module)
2113 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
2114 return _bootstrap._gcd_import(name[level:], package, level)
2115 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
2116 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
2117 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
2118 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
2119 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
2120 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
2121 File "/opt/code/getit/urls.py", line 31, in <module>
2122 from getit.views.resume import ResumeView, upload_resume
2123 File "/opt/code/getit/views/resume.py", line 15, in <module>
2124 from getit.parser.parser import parse_file, create_file_dir
2125 File "/opt/code/getit/parser/parser.py", line 16, in <module>
2126 raise Exception("environment variable FILESTACK_API_KEY is not set")
2127Exception: environment variable FILESTACK_API_KEY is not set
2128Loading nonfixture data
2129SETTINGS INFO ALLOWED_HOSTS: []
2130api: WARNING [2019-12-04 02:28:37,135] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
2131Traceback (most recent call last):
2132 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2133 (self._dns_host, self.port), self.timeout, **extra_kw
2134 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2135 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2136 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2137 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2138socket.gaierror: [Errno -2] Name does not resolve
2139
2140During handling of the above exception, another exception occurred:
2141
2142Traceback (most recent call last):
2143 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2144 method, url, body, retries=Retry(False), headers=request_headers, **kw
2145 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2146 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2147 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2148 raise six.reraise(type(error), error, _stacktrace)
2149 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2150 raise value
2151 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2152 chunked=chunked,
2153 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2154 conn.request(method, url, **httplib_request_kw)
2155 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2156 self._send_request(method, url, body, headers, encode_chunked)
2157 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2158 self.endheaders(body, encode_chunked=encode_chunked)
2159 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2160 self._send_output(message_body, encode_chunked=encode_chunked)
2161 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2162 self.send(msg)
2163 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2164 self.connect()
2165 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2166 conn = self._new_conn()
2167 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2168 self, "Failed to establish a new connection: %s" % e
2169urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf4970f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
2170api: WARNING [2019-12-04 02:28:38,151] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
2171Traceback (most recent call last):
2172 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2173 (self._dns_host, self.port), self.timeout, **extra_kw
2174 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2175 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2176 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2177 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2178socket.gaierror: [Errno -2] Name does not resolve
2179
2180During handling of the above exception, another exception occurred:
2181
2182Traceback (most recent call last):
2183 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2184 method, url, body, retries=Retry(False), headers=request_headers, **kw
2185 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2186 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2187 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2188 raise six.reraise(type(error), error, _stacktrace)
2189 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2190 raise value
2191 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2192 chunked=chunked,
2193 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2194 conn.request(method, url, **httplib_request_kw)
2195 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2196 self._send_request(method, url, body, headers, encode_chunked)
2197 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2198 self.endheaders(body, encode_chunked=encode_chunked)
2199 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2200 self._send_output(message_body, encode_chunked=encode_chunked)
2201 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2202 self.send(msg)
2203 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2204 self.connect()
2205 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2206 conn = self._new_conn()
2207 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2208 self, "Failed to establish a new connection: %s" % e
2209urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf497320>: Failed to establish a new connection: [Errno -2] Name does not resolve
2210api: WARNING [2019-12-04 02:28:41,168] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
2211Traceback (most recent call last):
2212 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2213 (self._dns_host, self.port), self.timeout, **extra_kw
2214 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2215 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2216 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2217 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2218socket.gaierror: [Errno -2] Name does not resolve
2219
2220During handling of the above exception, another exception occurred:
2221
2222Traceback (most recent call last):
2223 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2224 method, url, body, retries=Retry(False), headers=request_headers, **kw
2225 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2226 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2227 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2228 raise six.reraise(type(error), error, _stacktrace)
2229 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2230 raise value
2231 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2232 chunked=chunked,
2233 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2234 conn.request(method, url, **httplib_request_kw)
2235 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2236 self._send_request(method, url, body, headers, encode_chunked)
2237 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2238 self.endheaders(body, encode_chunked=encode_chunked)
2239 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2240 self._send_output(message_body, encode_chunked=encode_chunked)
2241 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2242 self.send(msg)
2243 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2244 self.connect()
2245 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2246 conn = self._new_conn()
2247 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2248 self, "Failed to establish a new connection: %s" % e
2249urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf497400>: Failed to establish a new connection: [Errno -2] Name does not resolve
2250api: WARNING [2019-12-04 02:28:48,185] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
2251Traceback (most recent call last):
2252 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2253 (self._dns_host, self.port), self.timeout, **extra_kw
2254 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2255 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2256 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2257 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2258socket.gaierror: [Errno -2] Name does not resolve
2259
2260During handling of the above exception, another exception occurred:
2261
2262Traceback (most recent call last):
2263 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2264 method, url, body, retries=Retry(False), headers=request_headers, **kw
2265 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2266 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2267 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2268 raise six.reraise(type(error), error, _stacktrace)
2269 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2270 raise value
2271 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2272 chunked=chunked,
2273 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2274 conn.request(method, url, **httplib_request_kw)
2275 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2276 self._send_request(method, url, body, headers, encode_chunked)
2277 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2278 self.endheaders(body, encode_chunked=encode_chunked)
2279 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2280 self._send_output(message_body, encode_chunked=encode_chunked)
2281 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2282 self.send(msg)
2283 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2284 self.connect()
2285 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2286 conn = self._new_conn()
2287 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2288 self, "Failed to establish a new connection: %s" % e
2289urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf497588>: Failed to establish a new connection: [Errno -2] Name does not resolve
2290api: WARNING [2019-12-04 02:28:48,207] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
2291Traceback (most recent call last):
2292 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2293 (self._dns_host, self.port), self.timeout, **extra_kw
2294 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2295 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2296 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2297 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2298socket.gaierror: [Errno -2] Name does not resolve
2299
2300During handling of the above exception, another exception occurred:
2301
2302Traceback (most recent call last):
2303 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2304 method, url, body, retries=Retry(False), headers=request_headers, **kw
2305 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2306 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2307 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2308 raise six.reraise(type(error), error, _stacktrace)
2309 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2310 raise value
2311 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2312 chunked=chunked,
2313 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2314 conn.request(method, url, **httplib_request_kw)
2315 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2316 self._send_request(method, url, body, headers, encode_chunked)
2317 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2318 self.endheaders(body, encode_chunked=encode_chunked)
2319 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2320 self._send_output(message_body, encode_chunked=encode_chunked)
2321 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2322 self.send(msg)
2323 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2324 self.connect()
2325 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2326 conn = self._new_conn()
2327 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2328 self, "Failed to establish a new connection: %s" % e
2329urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bb70>: Failed to establish a new connection: [Errno -2] Name does not resolve
2330api: WARNING [2019-12-04 02:28:49,221] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.004s]
2331Traceback (most recent call last):
2332 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2333 (self._dns_host, self.port), self.timeout, **extra_kw
2334 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2335 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2336 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2337 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2338socket.gaierror: [Errno -2] Name does not resolve
2339
2340During handling of the above exception, another exception occurred:
2341
2342Traceback (most recent call last):
2343 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2344 method, url, body, retries=Retry(False), headers=request_headers, **kw
2345 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2346 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2347 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2348 raise six.reraise(type(error), error, _stacktrace)
2349 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2350 raise value
2351 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2352 chunked=chunked,
2353 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2354 conn.request(method, url, **httplib_request_kw)
2355 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2356 self._send_request(method, url, body, headers, encode_chunked)
2357 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2358 self.endheaders(body, encode_chunked=encode_chunked)
2359 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2360 self._send_output(message_body, encode_chunked=encode_chunked)
2361 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2362 self.send(msg)
2363 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2364 self.connect()
2365 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2366 conn = self._new_conn()
2367 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2368 self, "Failed to establish a new connection: %s" % e
2369urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bc18>: Failed to establish a new connection: [Errno -2] Name does not resolve
2370api: WARNING [2019-12-04 02:28:52,200] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
2371Traceback (most recent call last):
2372 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2373 (self._dns_host, self.port), self.timeout, **extra_kw
2374 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2375 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2376 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2377 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2378socket.gaierror: [Errno -2] Name does not resolve
2379
2380During handling of the above exception, another exception occurred:
2381
2382Traceback (most recent call last):
2383 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2384 method, url, body, retries=Retry(False), headers=request_headers, **kw
2385 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2386 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2387 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2388 raise six.reraise(type(error), error, _stacktrace)
2389 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2390 raise value
2391 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2392 chunked=chunked,
2393 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2394 conn.request(method, url, **httplib_request_kw)
2395 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2396 self._send_request(method, url, body, headers, encode_chunked)
2397 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2398 self.endheaders(body, encode_chunked=encode_chunked)
2399 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2400 self._send_output(message_body, encode_chunked=encode_chunked)
2401 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2402 self.send(msg)
2403 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2404 self.connect()
2405 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2406 conn = self._new_conn()
2407 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2408 self, "Failed to establish a new connection: %s" % e
2409urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bcf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
2410api: WARNING [2019-12-04 02:28:59,225] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.006s]
2411Traceback (most recent call last):
2412 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2413 (self._dns_host, self.port), self.timeout, **extra_kw
2414 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2415 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2416 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2417 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2418socket.gaierror: [Errno -2] Name does not resolve
2419
2420During handling of the above exception, another exception occurred:
2421
2422Traceback (most recent call last):
2423 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2424 method, url, body, retries=Retry(False), headers=request_headers, **kw
2425 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2426 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2427 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2428 raise six.reraise(type(error), error, _stacktrace)
2429 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2430 raise value
2431 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2432 chunked=chunked,
2433 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2434 conn.request(method, url, **httplib_request_kw)
2435 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2436 self._send_request(method, url, body, headers, encode_chunked)
2437 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2438 self.endheaders(body, encode_chunked=encode_chunked)
2439 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2440 self._send_output(message_body, encode_chunked=encode_chunked)
2441 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2442 self.send(msg)
2443 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2444 self.connect()
2445 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2446 conn = self._new_conn()
2447 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2448 self, "Failed to establish a new connection: %s" % e
2449urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bdd8>: Failed to establish a new connection: [Errno -2] Name does not resolve
2450api: WARNING [2019-12-04 02:28:59,276] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
2451Traceback (most recent call last):
2452 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2453 (self._dns_host, self.port), self.timeout, **extra_kw
2454 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2455 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2456 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2457 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2458socket.gaierror: [Errno -2] Name does not resolve
2459
2460During handling of the above exception, another exception occurred:
2461
2462Traceback (most recent call last):
2463 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2464 method, url, body, retries=Retry(False), headers=request_headers, **kw
2465 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2466 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2467 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2468 raise six.reraise(type(error), error, _stacktrace)
2469 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2470 raise value
2471 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2472 chunked=chunked,
2473 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2474 conn.request(method, url, **httplib_request_kw)
2475 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2476 self._send_request(method, url, body, headers, encode_chunked)
2477 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2478 self.endheaders(body, encode_chunked=encode_chunked)
2479 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2480 self._send_output(message_body, encode_chunked=encode_chunked)
2481 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2482 self.send(msg)
2483 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2484 self.connect()
2485 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2486 conn = self._new_conn()
2487 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2488 self, "Failed to establish a new connection: %s" % e
2489urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f3c8>: Failed to establish a new connection: [Errno -2] Name does not resolve
2490api: WARNING [2019-12-04 02:29:00,296] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.006s]
2491Traceback (most recent call last):
2492 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2493 (self._dns_host, self.port), self.timeout, **extra_kw
2494 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2495 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2496 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2497 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2498socket.gaierror: [Errno -2] Name does not resolve
2499
2500During handling of the above exception, another exception occurred:
2501
2502Traceback (most recent call last):
2503 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2504 method, url, body, retries=Retry(False), headers=request_headers, **kw
2505 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2506 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2507 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2508 raise six.reraise(type(error), error, _stacktrace)
2509 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2510 raise value
2511 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2512 chunked=chunked,
2513 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2514 conn.request(method, url, **httplib_request_kw)
2515 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2516 self._send_request(method, url, body, headers, encode_chunked)
2517 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2518 self.endheaders(body, encode_chunked=encode_chunked)
2519 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2520 self._send_output(message_body, encode_chunked=encode_chunked)
2521 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2522 self.send(msg)
2523 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2524 self.connect()
2525 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2526 conn = self._new_conn()
2527 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2528 self, "Failed to establish a new connection: %s" % e
2529urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f470>: Failed to establish a new connection: [Errno -2] Name does not resolve
2530api: WARNING [2019-12-04 02:29:03,308] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
2531Traceback (most recent call last):
2532 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2533 (self._dns_host, self.port), self.timeout, **extra_kw
2534 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2535 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2536 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2537 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2538socket.gaierror: [Errno -2] Name does not resolve
2539
2540During handling of the above exception, another exception occurred:
2541
2542Traceback (most recent call last):
2543 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2544 method, url, body, retries=Retry(False), headers=request_headers, **kw
2545 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2546 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2547 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2548 raise six.reraise(type(error), error, _stacktrace)
2549 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2550 raise value
2551 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2552 chunked=chunked,
2553 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2554 conn.request(method, url, **httplib_request_kw)
2555 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2556 self._send_request(method, url, body, headers, encode_chunked)
2557 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2558 self.endheaders(body, encode_chunked=encode_chunked)
2559 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2560 self._send_output(message_body, encode_chunked=encode_chunked)
2561 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2562 self.send(msg)
2563 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2564 self.connect()
2565 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2566 conn = self._new_conn()
2567 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2568 self, "Failed to establish a new connection: %s" % e
2569urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f588>: Failed to establish a new connection: [Errno -2] Name does not resolve
2570api: WARNING [2019-12-04 02:29:10,323] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
2571Traceback (most recent call last):
2572 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2573 (self._dns_host, self.port), self.timeout, **extra_kw
2574 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2575 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2576 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2577 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2578socket.gaierror: [Errno -2] Name does not resolve
2579
2580During handling of the above exception, another exception occurred:
2581
2582Traceback (most recent call last):
2583 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2584 method, url, body, retries=Retry(False), headers=request_headers, **kw
2585 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2586 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2587 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2588 raise six.reraise(type(error), error, _stacktrace)
2589 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2590 raise value
2591 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2592 chunked=chunked,
2593 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2594 conn.request(method, url, **httplib_request_kw)
2595 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2596 self._send_request(method, url, body, headers, encode_chunked)
2597 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2598 self.endheaders(body, encode_chunked=encode_chunked)
2599 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2600 self._send_output(message_body, encode_chunked=encode_chunked)
2601 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2602 self.send(msg)
2603 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2604 self.connect()
2605 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2606 conn = self._new_conn()
2607 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2608 self, "Failed to establish a new connection: %s" % e
2609urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f5c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
2610Traceback (most recent call last):
2611 File "manage.py", line 53, in <module>
2612 execute_from_command_line(sys.argv)
2613 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
2614 utility.execute()
2615 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 375, in execute
2616 self.fetch_command(subcommand).run_from_argv(self.argv)
2617 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 316, in run_from_argv
2618 self.execute(*args, **cmd_options)
2619 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 350, in execute
2620 self.check()
2621 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 379, in check
2622 include_deployment_checks=include_deployment_checks,
2623 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 366, in _run_checks
2624 return checks.run_checks(**kwargs)
2625 File "/usr/local/lib/python3.6/site-packages/django/core/checks/registry.py", line 71, in run_checks
2626 new_errors = check(app_configs=app_configs)
2627 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 40, in check_url_namespaces_unique
2628 all_namespaces = _load_all_namespaces(resolver)
2629 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 57, in _load_all_namespaces
2630 url_patterns = getattr(resolver, 'url_patterns', [])
2631 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
2632 res = instance.__dict__[self.name] = self.func(instance)
2633 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 533, in url_patterns
2634 patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
2635 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
2636 res = instance.__dict__[self.name] = self.func(instance)
2637 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 526, in urlconf_module
2638 return import_module(self.urlconf_name)
2639 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
2640 return _bootstrap._gcd_import(name[level:], package, level)
2641 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
2642 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
2643 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
2644 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
2645 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
2646 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
2647 File "/opt/code/api/urls.py", line 29, in <module>
2648 url(r'^api/v1/', include('getit.urls')),
2649 File "/usr/local/lib/python3.6/site-packages/django/urls/conf.py", line 34, in include
2650 urlconf_module = import_module(urlconf_module)
2651 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
2652 return _bootstrap._gcd_import(name[level:], package, level)
2653 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
2654 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
2655 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
2656 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
2657 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
2658 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
2659 File "/opt/code/getit/urls.py", line 31, in <module>
2660 from getit.views.resume import ResumeView, upload_resume
2661 File "/opt/code/getit/views/resume.py", line 15, in <module>
2662 from getit.parser.parser import parse_file, create_file_dir
2663 File "/opt/code/getit/parser/parser.py", line 16, in <module>
2664 raise Exception("environment variable FILESTACK_API_KEY is not set")
2665Exception: environment variable FILESTACK_API_KEY is not set
2666Setting up builtin auth
2667SETTINGS INFO ALLOWED_HOSTS: []
2668api: WARNING [2019-12-04 02:29:18,939] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.006s]
2669Traceback (most recent call last):
2670 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2671 (self._dns_host, self.port), self.timeout, **extra_kw
2672 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2673 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2674 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2675 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2676socket.gaierror: [Errno -2] Name does not resolve
2677
2678During handling of the above exception, another exception occurred:
2679
2680Traceback (most recent call last):
2681 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2682 method, url, body, retries=Retry(False), headers=request_headers, **kw
2683 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2684 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2685 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2686 raise six.reraise(type(error), error, _stacktrace)
2687 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2688 raise value
2689 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2690 chunked=chunked,
2691 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2692 conn.request(method, url, **httplib_request_kw)
2693 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2694 self._send_request(method, url, body, headers, encode_chunked)
2695 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2696 self.endheaders(body, encode_chunked=encode_chunked)
2697 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2698 self._send_output(message_body, encode_chunked=encode_chunked)
2699 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2700 self.send(msg)
2701 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2702 self.connect()
2703 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2704 conn = self._new_conn()
2705 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2706 self, "Failed to establish a new connection: %s" % e
2707urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb6857840f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
2708api: WARNING [2019-12-04 02:29:19,948] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
2709Traceback (most recent call last):
2710 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2711 (self._dns_host, self.port), self.timeout, **extra_kw
2712 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2713 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2714 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2715 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2716socket.gaierror: [Errno -2] Name does not resolve
2717
2718During handling of the above exception, another exception occurred:
2719
2720Traceback (most recent call last):
2721 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2722 method, url, body, retries=Retry(False), headers=request_headers, **kw
2723 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2724 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2725 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2726 raise six.reraise(type(error), error, _stacktrace)
2727 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2728 raise value
2729 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2730 chunked=chunked,
2731 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2732 conn.request(method, url, **httplib_request_kw)
2733 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2734 self._send_request(method, url, body, headers, encode_chunked)
2735 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2736 self.endheaders(body, encode_chunked=encode_chunked)
2737 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2738 self._send_output(message_body, encode_chunked=encode_chunked)
2739 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2740 self.send(msg)
2741 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2742 self.connect()
2743 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2744 conn = self._new_conn()
2745 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2746 self, "Failed to establish a new connection: %s" % e
2747urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685784320>: Failed to establish a new connection: [Errno -2] Name does not resolve
2748api: WARNING [2019-12-04 02:29:22,929] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
2749Traceback (most recent call last):
2750 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2751 (self._dns_host, self.port), self.timeout, **extra_kw
2752 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2753 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2754 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2755 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2756socket.gaierror: [Errno -2] Name does not resolve
2757
2758During handling of the above exception, another exception occurred:
2759
2760Traceback (most recent call last):
2761 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2762 method, url, body, retries=Retry(False), headers=request_headers, **kw
2763 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2764 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2765 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2766 raise six.reraise(type(error), error, _stacktrace)
2767 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2768 raise value
2769 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2770 chunked=chunked,
2771 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2772 conn.request(method, url, **httplib_request_kw)
2773 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2774 self._send_request(method, url, body, headers, encode_chunked)
2775 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2776 self.endheaders(body, encode_chunked=encode_chunked)
2777 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2778 self._send_output(message_body, encode_chunked=encode_chunked)
2779 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2780 self.send(msg)
2781 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2782 self.connect()
2783 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2784 conn = self._new_conn()
2785 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2786 self, "Failed to establish a new connection: %s" % e
2787urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685784400>: Failed to establish a new connection: [Errno -2] Name does not resolve
2788api: WARNING [2019-12-04 02:29:29,944] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
2789Traceback (most recent call last):
2790 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2791 (self._dns_host, self.port), self.timeout, **extra_kw
2792 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2793 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2794 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2795 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2796socket.gaierror: [Errno -2] Name does not resolve
2797
2798During handling of the above exception, another exception occurred:
2799
2800Traceback (most recent call last):
2801 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2802 method, url, body, retries=Retry(False), headers=request_headers, **kw
2803 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2804 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2805 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2806 raise six.reraise(type(error), error, _stacktrace)
2807 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2808 raise value
2809 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2810 chunked=chunked,
2811 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2812 conn.request(method, url, **httplib_request_kw)
2813 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2814 self._send_request(method, url, body, headers, encode_chunked)
2815 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2816 self.endheaders(body, encode_chunked=encode_chunked)
2817 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2818 self._send_output(message_body, encode_chunked=encode_chunked)
2819 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2820 self.send(msg)
2821 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2822 self.connect()
2823 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2824 conn = self._new_conn()
2825 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2826 self, "Failed to establish a new connection: %s" % e
2827urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685784588>: Failed to establish a new connection: [Errno -2] Name does not resolve
2828api: WARNING [2019-12-04 02:29:29,964] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.004s]
2829Traceback (most recent call last):
2830 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2831 (self._dns_host, self.port), self.timeout, **extra_kw
2832 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2833 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2834 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2835 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2836socket.gaierror: [Errno -2] Name does not resolve
2837
2838During handling of the above exception, another exception occurred:
2839
2840Traceback (most recent call last):
2841 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2842 method, url, body, retries=Retry(False), headers=request_headers, **kw
2843 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2844 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2845 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2846 raise six.reraise(type(error), error, _stacktrace)
2847 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2848 raise value
2849 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2850 chunked=chunked,
2851 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2852 conn.request(method, url, **httplib_request_kw)
2853 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2854 self._send_request(method, url, body, headers, encode_chunked)
2855 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2856 self.endheaders(body, encode_chunked=encode_chunked)
2857 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2858 self._send_output(message_body, encode_chunked=encode_chunked)
2859 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2860 self.send(msg)
2861 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2862 self.connect()
2863 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2864 conn = self._new_conn()
2865 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2866 self, "Failed to establish a new connection: %s" % e
2867urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727b70>: Failed to establish a new connection: [Errno -2] Name does not resolve
2868api: WARNING [2019-12-04 02:29:30,990] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.018s]
2869Traceback (most recent call last):
2870 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2871 (self._dns_host, self.port), self.timeout, **extra_kw
2872 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2873 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2874 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2875 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2876socket.gaierror: [Errno -2] Name does not resolve
2877
2878During handling of the above exception, another exception occurred:
2879
2880Traceback (most recent call last):
2881 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2882 method, url, body, retries=Retry(False), headers=request_headers, **kw
2883 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2884 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2885 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2886 raise six.reraise(type(error), error, _stacktrace)
2887 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2888 raise value
2889 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2890 chunked=chunked,
2891 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2892 conn.request(method, url, **httplib_request_kw)
2893 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2894 self._send_request(method, url, body, headers, encode_chunked)
2895 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2896 self.endheaders(body, encode_chunked=encode_chunked)
2897 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2898 self._send_output(message_body, encode_chunked=encode_chunked)
2899 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2900 self.send(msg)
2901 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2902 self.connect()
2903 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2904 conn = self._new_conn()
2905 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2906 self, "Failed to establish a new connection: %s" % e
2907urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727c18>: Failed to establish a new connection: [Errno -2] Name does not resolve
2908api: WARNING [2019-12-04 02:29:34,005] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
2909Traceback (most recent call last):
2910 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2911 (self._dns_host, self.port), self.timeout, **extra_kw
2912 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2913 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2914 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2915 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2916socket.gaierror: [Errno -2] Name does not resolve
2917
2918During handling of the above exception, another exception occurred:
2919
2920Traceback (most recent call last):
2921 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2922 method, url, body, retries=Retry(False), headers=request_headers, **kw
2923 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2924 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2925 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2926 raise six.reraise(type(error), error, _stacktrace)
2927 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2928 raise value
2929 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2930 chunked=chunked,
2931 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2932 conn.request(method, url, **httplib_request_kw)
2933 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2934 self._send_request(method, url, body, headers, encode_chunked)
2935 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2936 self.endheaders(body, encode_chunked=encode_chunked)
2937 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2938 self._send_output(message_body, encode_chunked=encode_chunked)
2939 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2940 self.send(msg)
2941 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2942 self.connect()
2943 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2944 conn = self._new_conn()
2945 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2946 self, "Failed to establish a new connection: %s" % e
2947urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727cf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
2948api: WARNING [2019-12-04 02:29:41,029] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
2949Traceback (most recent call last):
2950 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2951 (self._dns_host, self.port), self.timeout, **extra_kw
2952 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2953 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2954 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2955 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2956socket.gaierror: [Errno -2] Name does not resolve
2957
2958During handling of the above exception, another exception occurred:
2959
2960Traceback (most recent call last):
2961 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
2962 method, url, body, retries=Retry(False), headers=request_headers, **kw
2963 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
2964 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
2965 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
2966 raise six.reraise(type(error), error, _stacktrace)
2967 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
2968 raise value
2969 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
2970 chunked=chunked,
2971 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
2972 conn.request(method, url, **httplib_request_kw)
2973 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
2974 self._send_request(method, url, body, headers, encode_chunked)
2975 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
2976 self.endheaders(body, encode_chunked=encode_chunked)
2977 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
2978 self._send_output(message_body, encode_chunked=encode_chunked)
2979 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
2980 self.send(msg)
2981 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
2982 self.connect()
2983 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
2984 conn = self._new_conn()
2985 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
2986 self, "Failed to establish a new connection: %s" % e
2987urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727dd8>: Failed to establish a new connection: [Errno -2] Name does not resolve
2988api: WARNING [2019-12-04 02:29:41,079] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
2989Traceback (most recent call last):
2990 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
2991 (self._dns_host, self.port), self.timeout, **extra_kw
2992 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
2993 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
2994 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
2995 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
2996socket.gaierror: [Errno -2] Name does not resolve
2997
2998During handling of the above exception, another exception occurred:
2999
3000Traceback (most recent call last):
3001 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
3002 method, url, body, retries=Retry(False), headers=request_headers, **kw
3003 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
3004 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
3005 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
3006 raise six.reraise(type(error), error, _stacktrace)
3007 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
3008 raise value
3009 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
3010 chunked=chunked,
3011 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
3012 conn.request(method, url, **httplib_request_kw)
3013 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
3014 self._send_request(method, url, body, headers, encode_chunked)
3015 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
3016 self.endheaders(body, encode_chunked=encode_chunked)
3017 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
3018 self._send_output(message_body, encode_chunked=encode_chunked)
3019 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
3020 self.send(msg)
3021 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
3022 self.connect()
3023 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
3024 conn = self._new_conn()
3025 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
3026 self, "Failed to establish a new connection: %s" % e
3027urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a3c8>: Failed to establish a new connection: [Errno -2] Name does not resolve
3028api: WARNING [2019-12-04 02:29:42,091] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
3029Traceback (most recent call last):
3030 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
3031 (self._dns_host, self.port), self.timeout, **extra_kw
3032 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
3033 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
3034 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
3035 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
3036socket.gaierror: [Errno -2] Name does not resolve
3037
3038During handling of the above exception, another exception occurred:
3039
3040Traceback (most recent call last):
3041 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
3042 method, url, body, retries=Retry(False), headers=request_headers, **kw
3043 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
3044 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
3045 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
3046 raise six.reraise(type(error), error, _stacktrace)
3047 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
3048 raise value
3049 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
3050 chunked=chunked,
3051 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
3052 conn.request(method, url, **httplib_request_kw)
3053 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
3054 self._send_request(method, url, body, headers, encode_chunked)
3055 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
3056 self.endheaders(body, encode_chunked=encode_chunked)
3057 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
3058 self._send_output(message_body, encode_chunked=encode_chunked)
3059 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
3060 self.send(msg)
3061 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
3062 self.connect()
3063 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
3064 conn = self._new_conn()
3065 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
3066 self, "Failed to establish a new connection: %s" % e
3067urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a470>: Failed to establish a new connection: [Errno -2] Name does not resolve
3068api: WARNING [2019-12-04 02:29:45,101] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
3069Traceback (most recent call last):
3070 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
3071 (self._dns_host, self.port), self.timeout, **extra_kw
3072 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
3073 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
3074 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
3075 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
3076socket.gaierror: [Errno -2] Name does not resolve
3077
3078During handling of the above exception, another exception occurred:
3079
3080Traceback (most recent call last):
3081 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
3082 method, url, body, retries=Retry(False), headers=request_headers, **kw
3083 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
3084 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
3085 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
3086 raise six.reraise(type(error), error, _stacktrace)
3087 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
3088 raise value
3089 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
3090 chunked=chunked,
3091 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
3092 conn.request(method, url, **httplib_request_kw)
3093 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
3094 self._send_request(method, url, body, headers, encode_chunked)
3095 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
3096 self.endheaders(body, encode_chunked=encode_chunked)
3097 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
3098 self._send_output(message_body, encode_chunked=encode_chunked)
3099 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
3100 self.send(msg)
3101 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
3102 self.connect()
3103 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
3104 conn = self._new_conn()
3105 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
3106 self, "Failed to establish a new connection: %s" % e
3107urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a588>: Failed to establish a new connection: [Errno -2] Name does not resolve
3108api: WARNING [2019-12-04 02:29:52,079] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
3109Traceback (most recent call last):
3110 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
3111 (self._dns_host, self.port), self.timeout, **extra_kw
3112 File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 61, in create_connection
3113 for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):
3114 File "/usr/local/lib/python3.6/socket.py", line 745, in getaddrinfo
3115 for res in _socket.getaddrinfo(host, port, family, type, proto, flags):
3116socket.gaierror: [Errno -2] Name does not resolve
3117
3118During handling of the above exception, another exception occurred:
3119
3120Traceback (most recent call last):
3121 File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
3122 method, url, body, retries=Retry(False), headers=request_headers, **kw
3123 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
3124 method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
3125 File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
3126 raise six.reraise(type(error), error, _stacktrace)
3127 File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
3128 raise value
3129 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
3130 chunked=chunked,
3131 File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
3132 conn.request(method, url, **httplib_request_kw)
3133 File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
3134 self._send_request(method, url, body, headers, encode_chunked)
3135 File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
3136 self.endheaders(body, encode_chunked=encode_chunked)
3137 File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
3138 self._send_output(message_body, encode_chunked=encode_chunked)
3139 File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
3140 self.send(msg)
3141 File "/usr/local/lib/python3.6/http/client.py", line 964, in send
3142 self.connect()
3143 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
3144 conn = self._new_conn()
3145 File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
3146 self, "Failed to establish a new connection: %s" % e
3147urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a5c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
3148Traceback (most recent call last):
3149 File "manage.py", line 53, in <module>
3150 execute_from_command_line(sys.argv)
3151 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
3152 utility.execute()
3153 File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 375, in execute
3154 self.fetch_command(subcommand).run_from_argv(self.argv)
3155 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 316, in run_from_argv
3156 self.execute(*args, **cmd_options)
3157 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 350, in execute
3158 self.check()
3159 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 379, in check
3160 include_deployment_checks=include_deployment_checks,
3161 File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 366, in _run_checks
3162 return checks.run_checks(**kwargs)
3163 File "/usr/local/lib/python3.6/site-packages/django/core/checks/registry.py", line 71, in run_checks
3164 new_errors = check(app_configs=app_configs)
3165 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 40, in check_url_namespaces_unique
3166 all_namespaces = _load_all_namespaces(resolver)
3167 File "/usr/local/lib/python3.6/site-packages/django/core/checks/urls.py", line 57, in _load_all_namespaces
3168 url_patterns = getattr(resolver, 'url_patterns', [])
3169 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
3170 res = instance.__dict__[self.name] = self.func(instance)
3171 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 533, in url_patterns
3172 patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
3173 File "/usr/local/lib/python3.6/site-packages/django/utils/functional.py", line 37, in __get__
3174 res = instance.__dict__[self.name] = self.func(instance)
3175 File "/usr/local/lib/python3.6/site-packages/django/urls/resolvers.py", line 526, in urlconf_module
3176 return import_module(self.urlconf_name)
3177 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
3178 return _bootstrap._gcd_import(name[level:], package, level)
3179 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
3180 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
3181 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
3182 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
3183 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
3184 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
3185 File "/opt/code/api/urls.py", line 29, in <module>
3186 url(r'^api/v1/', include('getit.urls')),
3187 File "/usr/local/lib/python3.6/site-packages/django/urls/conf.py", line 34, in include
3188 urlconf_module = import_module(urlconf_module)
3189 File "/usr/local/lib/python3.6/importlib/__init__.py", line 126, in import_module
3190 return _bootstrap._gcd_import(name[level:], package, level)
3191 File "<frozen importlib._bootstrap>", line 994, in _gcd_import
3192 File "<frozen importlib._bootstrap>", line 971, in _find_and_load
3193 File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
3194 File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
3195 File "<frozen importlib._bootstrap_external>", line 678, in exec_module
3196 File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
3197 File "/opt/code/getit/urls.py", line 31, in <module>
3198 from getit.views.resume import ResumeView, upload_resume
3199 File "/opt/code/getit/views/resume.py", line 15, in <module>
3200 from getit.parser.parser import parse_file, create_file_dir
3201 File "/opt/code/getit/parser/parser.py", line 16, in <module>
3202 raise Exception("environment variable FILESTACK_API_KEY is not set")
3203Exception: environment variable FILESTACK_API_KEY is not set
3204LOG: received smart shutdown request
3205LOG: autovacuum launcher shutting down
3206LOG: shutting down
3207LOG: database system is shut down
3208Removing intermediate container 746e98b71a60
3209 ---> 1f1931c07595
3210Step 42/42 : CMD ["su-exec", "postgres", "postgres"]
3211 ---> Running in 519edfa9d9c4
3212Removing intermediate container 519edfa9d9c4
3213 ---> c1e4c9b934ea
3214Successfully built c1e4c9b934ea
3215Successfully tagged getit_db:latest
3216Building internal-cbs
3217Step 1/13 : FROM golang:1.11.4-alpine3.8
3218 ---> f56365ec0638
3219Step 2/13 : ENV GOOGLE_APPLICATION_CREDENTIALS=
3220 ---> Running in 33156a79262e
3221Removing intermediate container 33156a79262e
3222 ---> c501f8e88899
3223Step 3/13 : ENV RECAPTCHA_KEY_FILE=
3224 ---> Running in ec18040a89e3
3225Removing intermediate container ec18040a89e3
3226 ---> d1893c813ab2
3227Step 4/13 : ENV ELASTIC_HOST=
3228 ---> Running in 0297b0b17459
3229Removing intermediate container 0297b0b17459
3230 ---> 5630ad809ed2
3231Step 5/13 : ENV ELASTIC_NAME=
3232 ---> Running in 9a8dea2f6528
3233Removing intermediate container 9a8dea2f6528
3234 ---> 3443de20e72f
3235Step 6/13 : ENV ELASTIC_PASSWORD=
3236 ---> Running in d9e069e8bb2e
3237Removing intermediate container d9e069e8bb2e
3238 ---> a8634054ec8c
3239Step 7/13 : RUN apk add --update git
3240 ---> Running in 273fee7606e2
3241fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
3242fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
3243(1/6) Installing nghttp2-libs (1.39.2-r0)
3244(2/6) Installing libssh2 (1.9.0-r1)
3245(3/6) Installing libcurl (7.61.1-r3)
3246(4/6) Installing expat (2.2.8-r0)
3247(5/6) Installing pcre2 (10.31-r0)
3248(6/6) Installing git (2.18.1-r0)
3249Executing busybox-1.28.4-r2.trigger
3250OK: 19 MiB in 20 packages
3251Removing intermediate container 273fee7606e2
3252 ---> 8d5107c3ad25
3253Step 8/13 : RUN mkdir -p /opt/code/
3254 ---> Running in 20bfe9c895e9
3255Removing intermediate container 20bfe9c895e9
3256 ---> 46f40855aa6d
3257Step 9/13 : WORKDIR /opt/code/
3258 ---> Running in 03b22ebff599
3259Removing intermediate container 03b22ebff599
3260 ---> 12343b1c1ed0
3261Step 10/13 : ADD ./ /opt/code/
3262 ---> c08e8a3b1d43
3263Step 11/13 : RUN CGO_ENABLED=0 go build -mod=vendor -o /go/bin/internal-cbs
3264 ---> Running in 03de12c7d8f8
3265Removing intermediate container 03de12c7d8f8
3266 ---> 099779de0344
3267Step 12/13 : ENTRYPOINT /go/bin/internal-cbs
3268 ---> Running in 3153fa16f38f
3269Removing intermediate container 3153fa16f38f
3270 ---> b434b338c0fe
3271Step 13/13 : EXPOSE 8080
3272 ---> Running in 21c66dce9df4
3273Removing intermediate container 21c66dce9df4
3274 ---> f3d50435a6a8
3275Successfully built f3d50435a6a8
3276Successfully tagged getit_internal-cbs:latest
3277Building click-service
3278Step 1/13 : FROM golang:1.11.4-alpine3.8
3279 ---> f56365ec0638
3280Step 2/13 : ENV GOOGLE_APPLICATION_CREDENTIALS=
3281 ---> Using cache
3282 ---> c501f8e88899
3283Step 3/13 : ENV RECAPTCHA_KEY_FILE=
3284 ---> Using cache
3285 ---> d1893c813ab2
3286Step 4/13 : ENV ELASTIC_HOST=
3287 ---> Using cache
3288 ---> 5630ad809ed2
3289Step 5/13 : ENV ELASTIC_NAME=
3290 ---> Using cache
3291 ---> 3443de20e72f
3292Step 6/13 : ENV ELASTIC_PASSWORD=
3293 ---> Using cache
3294 ---> a8634054ec8c
3295Step 7/13 : RUN apk add --update git
3296 ---> Using cache
3297 ---> 8d5107c3ad25
3298Step 8/13 : RUN mkdir -p /opt/code/
3299 ---> Using cache
3300 ---> 46f40855aa6d
3301Step 9/13 : WORKDIR /opt/code/
3302 ---> Using cache
3303 ---> 12343b1c1ed0
3304Step 10/13 : ADD ./ /opt/code/
3305 ---> ccfa99207727
3306Step 11/13 : RUN CGO_ENABLED=0 go build -mod=vendor -o /go/bin/click-service
3307 ---> Running in 2950d84e7224
3308Removing intermediate container 2950d84e7224
3309 ---> 7f009a2ac117
3310Step 12/13 : ENTRYPOINT /go/bin/click-service
3311 ---> Running in 4a9a266b2d34
3312Removing intermediate container 4a9a266b2d34
3313 ---> 0536add5d8a8
3314Step 13/13 : EXPOSE 8080
3315 ---> Running in 7ab920242b2b
3316Removing intermediate container 7ab920242b2b
3317 ---> f19fcf4f1149
3318Successfully built f19fcf4f1149
3319Successfully tagged getit_click-service:latest
3320Building adapult-api
3321Step 1/11 : FROM golang:alpine as builder
3322alpine: Pulling from library/golang
332389d9c30c1d48: Pull complete
33248ef94372a977: Pull complete
33251ec62c064901: Pull complete
3326a47b1e89d194: Pull complete
3327bf1a3d234800: Pull complete
3328Digest: sha256:9d2a7c5b6447f525da0a4f18efd2cb05bf7d70228f75d713b7a67345f30157ac
3329Status: Downloaded newer image for golang:alpine
3330 ---> 3024b4e742b0
3331Step 2/11 : RUN apk add git && apk add ca-certificates
3332 ---> Running in 1b68e8cc820d
3333fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/main/x86_64/APKINDEX.tar.gz
3334fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/community/x86_64/APKINDEX.tar.gz
3335(1/5) Installing nghttp2-libs (1.39.2-r0)
3336(2/5) Installing libcurl (7.66.0-r0)
3337(3/5) Installing expat (2.2.8-r0)
3338(4/5) Installing pcre2 (10.33-r0)
3339(5/5) Installing git (2.22.0-r0)
3340Executing busybox-1.30.1-r2.trigger
3341OK: 21 MiB in 20 packages
3342OK: 21 MiB in 20 packages
3343Removing intermediate container 1b68e8cc820d
3344 ---> 72654d4bd030
3345Step 3/11 : RUN adduser -D -g '' appuser
3346 ---> Running in 21a202f8fc69
3347Removing intermediate container 21a202f8fc69
3348 ---> b495a6f75076
3349Step 4/11 : RUN mkdir /build
3350 ---> Running in 212935b60558
3351Removing intermediate container 212935b60558
3352 ---> 56d6fe1c04b1
3353Step 5/11 : COPY . /build/
3354 ---> 49b551b8f8c9
3355Step 6/11 : WORKDIR /build
3356 ---> Running in d8c90aa6fe15
3357Removing intermediate container d8c90aa6fe15
3358 ---> ca1249907fc8
3359Step 7/11 : RUN CGO_ENABLED=0 go build -o main .
3360 ---> Running in c738ce1e4fd8
3361go: downloading cloud.google.com/go v0.38.0
3362go: downloading github.com/sirupsen/logrus v1.4.2
3363go: downloading google.golang.org/api v0.9.0
3364go: downloading github.com/go-chi/chi v4.0.2+incompatible
3365go: downloading github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
3366go: downloading github.com/lib/pq v1.0.0
3367go: downloading github.com/golang-migrate/migrate v3.5.4+incompatible
3368go: downloading github.com/jmoiron/sqlx v1.2.0
3369go: extracting github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
3370go: downloading github.com/kelseyhightower/envconfig v1.4.0
3371go: extracting github.com/go-chi/chi v4.0.2+incompatible
3372go: downloading github.com/pkg/errors v0.8.1
3373go: extracting github.com/jmoiron/sqlx v1.2.0
3374go: extracting github.com/golang-migrate/migrate v3.5.4+incompatible
3375go: extracting github.com/lib/pq v1.0.0
3376go: extracting github.com/sirupsen/logrus v1.4.2
3377go: downloading github.com/golang-migrate/migrate/v4 v4.6.1
3378go: downloading github.com/rollbar/rollbar-go v1.1.0
3379go: downloading golang.org/x/sys v0.0.0-20190913121621-c3b328c6e5a7
3380go: downloading github.com/go-chi/render v1.0.1
3381go: extracting github.com/kelseyhightower/envconfig v1.4.0
3382go: extracting github.com/pkg/errors v0.8.1
3383go: extracting github.com/go-chi/render v1.0.1
3384go: extracting github.com/rollbar/rollbar-go v1.1.0
3385go: extracting github.com/golang-migrate/migrate/v4 v4.6.1
3386go: downloading github.com/hashicorp/go-multierror v1.0.0
3387go: extracting github.com/hashicorp/go-multierror v1.0.0
3388go: downloading github.com/hashicorp/errwrap v1.0.0
3389go: extracting github.com/hashicorp/errwrap v1.0.0
3390go: extracting cloud.google.com/go v0.38.0
3391go: extracting golang.org/x/sys v0.0.0-20190913121621-c3b328c6e5a7
3392go: downloading google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873
3393go: downloading github.com/googleapis/gax-go/v2 v2.0.5
3394go: downloading google.golang.org/grpc v1.21.0
3395go: extracting github.com/googleapis/gax-go/v2 v2.0.5
3396go: extracting google.golang.org/grpc v1.21.0
3397go: downloading go.opencensus.io v0.21.0
3398go: downloading github.com/golang/protobuf v1.3.1
3399go: downloading golang.org/x/net v0.0.0-20190628185345-da137c7871d7
3400go: extracting go.opencensus.io v0.21.0
3401go: extracting github.com/golang/protobuf v1.3.1
3402go: downloading github.com/hashicorp/golang-lru v0.5.1
3403go: extracting golang.org/x/net v0.0.0-20190628185345-da137c7871d7
3404go: extracting github.com/hashicorp/golang-lru v0.5.1
3405go: downloading golang.org/x/text v0.3.2
3406go: extracting google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873
3407go: extracting google.golang.org/api v0.9.0
3408go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
3409go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
3410go: extracting golang.org/x/text v0.3.2
3411go: finding github.com/kelseyhightower/envconfig v1.4.0
3412go: finding github.com/pkg/errors v0.8.1
3413go: finding github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
3414go: finding github.com/rollbar/rollbar-go v1.1.0
3415go: finding github.com/go-chi/chi v4.0.2+incompatible
3416go: finding cloud.google.com/go v0.38.0
3417go: finding github.com/golang-migrate/migrate/v4 v4.6.1
3418go: finding github.com/go-chi/render v1.0.1
3419go: finding github.com/jmoiron/sqlx v1.2.0
3420go: finding github.com/sirupsen/logrus v1.4.2
3421go: finding github.com/googleapis/gax-go/v2 v2.0.5
3422go: finding github.com/lib/pq v1.0.0
3423go: finding google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873
3424go: finding github.com/hashicorp/go-multierror v1.0.0
3425go: finding google.golang.org/api v0.9.0
3426go: finding google.golang.org/grpc v1.21.0
3427go: finding go.opencensus.io v0.21.0
3428go: finding github.com/golang/protobuf v1.3.1
3429go: finding github.com/hashicorp/errwrap v1.0.0
3430go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
3431go: finding golang.org/x/net v0.0.0-20190628185345-da137c7871d7
3432go: finding golang.org/x/sys v0.0.0-20190913121621-c3b328c6e5a7
3433go: finding github.com/hashicorp/golang-lru v0.5.1
3434go: finding golang.org/x/text v0.3.2
3435Removing intermediate container c738ce1e4fd8
3436 ---> 09ddb37a39f7
3437Step 8/11 : RUN chown appuser /build
3438 ---> Running in a3f1b5685390
3439Removing intermediate container a3f1b5685390
3440 ---> 70fa39154bcd
3441Step 9/11 : USER appuser
3442 ---> Running in e828169943ba
3443Removing intermediate container e828169943ba
3444 ---> a1e3303beca3
3445Step 10/11 : EXPOSE 8080
3446 ---> Running in c1b17b4727b6
3447Removing intermediate container c1b17b4727b6
3448 ---> b620b7e5ae14
3449Step 11/11 : ENTRYPOINT ["./main"]
3450 ---> Running in 7dc1379f9ea6
3451Removing intermediate container 7dc1379f9ea6
3452 ---> cda7483de07a
3453Successfully built cda7483de07a
3454Successfully tagged adapult:latest
3455Building dev-server
3456Step 1/37 : FROM python:3.6.7-alpine3.6
3457 ---> 8f30079779ef
3458Step 2/37 : ARG django_secret_key
3459 ---> Running in d5fc67d20d49
3460Removing intermediate container d5fc67d20d49
3461 ---> 73825cd63515
3462Step 3/37 : ENV DJANGO_SECRET_KEY $django_secret_key
3463 ---> Running in 54c485789725
3464Removing intermediate container 54c485789725
3465 ---> d1a5ca83fd93
3466Step 4/37 : RUN apk add --update pytest
3467 ---> Running in 7734ff8ac053
3468fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3469fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3470(1/4) Installing python3 (3.6.8-r0)
3471(2/4) Installing py3-py (1.4.31-r1)
3472(3/4) Installing py3-pytest (3.0.6-r1)
3473(4/4) Installing pytest (3.0.6-r1)
3474Executing busybox-1.26.2-r11.trigger
3475OK: 75 MiB in 29 packages
3476Removing intermediate container 7734ff8ac053
3477 ---> b81f7dde4949
3478Step 5/37 : RUN apk add --update postgresql-libs
3479 ---> Running in 374b739bd833
3480fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3481fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3482(1/5) Installing db (5.3.28-r0)
3483(2/5) Installing libsasl (2.1.26-r10)
3484(3/5) Installing libldap (2.4.44-r5)
3485(4/5) Installing libpq (9.6.13-r0)
3486(5/5) Installing postgresql-libs (9.6.13-r0)
3487OK: 78 MiB in 34 packages
3488Removing intermediate container 374b739bd833
3489 ---> 4bb30eb7dd44
3490Step 6/37 : RUN apk add --update curl
3491 ---> Running in 4c1da765d929
3492fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3493fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3494(1/3) Installing libssh2 (1.8.2-r0)
3495(2/3) Installing libcurl (7.61.1-r2)
3496(3/3) Installing curl (7.61.1-r2)
3497Executing busybox-1.26.2-r11.trigger
3498OK: 79 MiB in 37 packages
3499Removing intermediate container 4c1da765d929
3500 ---> 421ce8806a94
3501Step 7/37 : RUN apk add --update git
3502 ---> Running in f2819d056bfa
3503fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3504fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3505(1/2) Installing pcre (8.41-r0)
3506(2/2) Installing git (2.13.7-r2)
3507Executing busybox-1.26.2-r11.trigger
3508OK: 98 MiB in 39 packages
3509Removing intermediate container f2819d056bfa
3510 ---> 0be5173eb1b7
3511Step 8/37 : RUN apk add --update gettext
3512 ---> Running in 2f9aa680d5b9
3513fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3514fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3515(1/5) Installing libgomp (6.3.0-r4)
3516(2/5) Installing libintl (0.19.8.1-r1)
3517(3/5) Installing libunistring (0.9.7-r0)
3518(4/5) Installing libxml2 (2.9.8-r1)
3519(5/5) Installing gettext (0.19.8.1-r1)
3520Executing busybox-1.26.2-r11.trigger
3521OK: 103 MiB in 44 packages
3522Removing intermediate container 2f9aa680d5b9
3523 ---> 5772b21c9459
3524Step 9/37 : RUN apk add --update nginx
3525 ---> Running in 5f88391ddc7d
3526fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3527fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3528(1/1) Installing nginx (1.12.2-r2)
3529Executing nginx-1.12.2-r2.pre-install
3530Executing busybox-1.26.2-r11.trigger
3531OK: 104 MiB in 45 packages
3532Removing intermediate container 5f88391ddc7d
3533 ---> 77367ccf58e7
3534Step 10/37 : RUN mkdir -p /run/nginx
3535 ---> Running in e891758e7c44
3536Removing intermediate container e891758e7c44
3537 ---> 1b0d8677b57f
3538Step 11/37 : RUN apk add --update tzdata
3539 ---> Running in 367cc0402202
3540fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3541fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3542(1/1) Installing tzdata (2019a-r0)
3543Executing busybox-1.26.2-r11.trigger
3544OK: 108 MiB in 46 packages
3545Removing intermediate container 367cc0402202
3546 ---> 92c91ea32e30
3547Step 12/37 : ENV TZ=America/New_York
3548 ---> Running in 54419d929309
3549Removing intermediate container 54419d929309
3550 ---> ff7511236516
3551Step 13/37 : RUN apk add --update build-base py-pip jpeg-dev zlib-dev
3552 ---> Running in 85e139569d3f
3553fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3554fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3555(1/28) Upgrading musl (1.1.16-r14 -> 1.1.16-r15)
3556(2/28) Installing binutils-libs (2.30-r1)
3557(3/28) Installing binutils (2.30-r1)
3558(4/28) Installing gmp (6.1.2-r0)
3559(5/28) Installing isl (0.17.1-r0)
3560(6/28) Installing libatomic (6.3.0-r4)
3561(7/28) Installing pkgconf (1.3.7-r0)
3562(8/28) Installing libgcc (6.3.0-r4)
3563(9/28) Installing mpfr3 (3.1.5-r0)
3564(10/28) Installing mpc1 (1.0.3-r0)
3565(11/28) Installing libstdc++ (6.3.0-r4)
3566(12/28) Installing gcc (6.3.0-r4)
3567(13/28) Installing musl-dev (1.1.16-r15)
3568(14/28) Installing libc-dev (0.7.1-r0)
3569(15/28) Installing g++ (6.3.0-r4)
3570(16/28) Installing make (4.2.1-r0)
3571(17/28) Installing fortify-headers (0.8-r0)
3572(18/28) Installing build-base (0.5-r0)
3573(19/28) Installing libjpeg-turbo (1.5.3-r2)
3574(20/28) Installing libjpeg-turbo-dev (1.5.3-r2)
3575(21/28) Installing jpeg-dev (8-r6)
3576(22/28) Upgrading musl-utils (1.1.16-r14 -> 1.1.16-r15)
3577(23/28) Installing python2 (2.7.15-r0)
3578(24/28) Installing py-setuptools (33.1.1-r1)
3579(25/28) Installing py2-pip (9.0.1-r1)
3580(26/28) Installing py2-py (1.4.31-r1)
3581(27/28) Installing py2-pytest (3.0.6-r1)
3582(28/28) Installing zlib-dev (1.2.11-r0)
3583Executing busybox-1.26.2-r11.trigger
3584OK: 317 MiB in 72 packages
3585Removing intermediate container 85e139569d3f
3586 ---> eaa640d64391
3587Step 14/37 : ENV LIBRARY_PATH=/lib:/usr/lib
3588 ---> Running in 3329ec6b3cae
3589Removing intermediate container 3329ec6b3cae
3590 ---> e6ac8a338a34
3591Step 15/37 : RUN mkdir -p /opt/code
3592 ---> Running in 923eecd91bc9
3593Removing intermediate container 923eecd91bc9
3594 ---> fd2f8de1bd92
3595Step 16/37 : RUN mkdir -p /opt/photos
3596 ---> Running in 1e16841773c5
3597Removing intermediate container 1e16841773c5
3598 ---> 017f9ccfb9b3
3599Step 17/37 : RUN mkdir -p /opt/code/tmp
3600 ---> Running in 56a41600f82e
3601Removing intermediate container 56a41600f82e
3602 ---> 11348f87fea7
3603Step 18/37 : WORKDIR /opt/code
3604 ---> Running in 79163d5296ca
3605Removing intermediate container 79163d5296ca
3606 ---> c852dcd69487
3607Step 19/37 : RUN pip3 install --upgrade setuptools
3608 ---> Running in 90fc90ad4c77
3609Collecting setuptools
3610 Downloading https://files.pythonhosted.org/packages/54/28/c45d8b54c1339f9644b87663945e54a8503cfef59cf0f65b3ff5dd17cf64/setuptools-42.0.2-py2.py3-none-any.whl (583kB)
3611Installing collected packages: setuptools
3612 Found existing installation: setuptools 40.6.3
3613 Uninstalling setuptools-40.6.3:
3614 Successfully uninstalled setuptools-40.6.3
3615Successfully installed setuptools-42.0.2
3616You are using pip version 18.1, however version 19.3.1 is available.
3617You should consider upgrading via the 'pip install --upgrade pip' command.
3618Removing intermediate container 90fc90ad4c77
3619 ---> f090913f661a
3620Step 20/37 : RUN pip3 install --upgrade pip
3621 ---> Running in de844021ed8e
3622Collecting pip
3623 Downloading https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl (1.4MB)
3624Installing collected packages: pip
3625 Found existing installation: pip 18.1
3626 Uninstalling pip-18.1:
3627 Successfully uninstalled pip-18.1
3628Successfully installed pip-19.3.1
3629Removing intermediate container de844021ed8e
3630 ---> 757ad4f55db8
3631Step 21/37 : ADD requirements.txt /opt/code/requirements.txt
3632 ---> 86513a07a7d3
3633Step 22/37 : RUN pip3 install --upgrade setuptools
3634 ---> Running in 857668c2859e
3635Requirement already up-to-date: setuptools in /usr/local/lib/python3.6/site-packages (42.0.2)
3636Removing intermediate container 857668c2859e
3637 ---> b703f7c8c0bf
3638Step 23/37 : RUN pip3 install --upgrade pip
3639 ---> Running in 93ec8ef570ef
3640Requirement already up-to-date: pip in /usr/local/lib/python3.6/site-packages (19.3.1)
3641Removing intermediate container 93ec8ef570ef
3642 ---> a32b5aac0b53
3643Step 24/37 : ADD ./vendor /opt/vendor
3644 ---> 928ef223c9be
3645Step 25/37 : ADD ./deps /opt/deps
3646 ---> c6dafd276c45
3647Step 26/37 : RUN if ls /opt/vendor/*.whl 1> /dev/null 2>&1; then pip3 install /opt/vendor/*.whl; fi
3648 ---> Running in 90d8b018bc33
3649Removing intermediate container 90d8b018bc33
3650 ---> f91b7a68a088
3651Step 27/37 : RUN mkdir -p /opt/server
3652 ---> Running in c3e995313586
3653Removing intermediate container c3e995313586
3654 ---> ee2b338b6e2d
3655Step 28/37 : RUN mkdir -p /opt/static
3656 ---> Running in 276770c901a5
3657Removing intermediate container 276770c901a5
3658 ---> 23b653e317b0
3659Step 29/37 : RUN apk add --no-cache --virtual .build-deps python3-dev build-base linux-headers gcc postgresql-dev && pip3 install -r requirements.txt && find /usr/local \( -type d -a -name test -o -name tests \) -o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) -exec rm -rf '{}' + && runDeps="$( scanelf --needed --nobanner --recursive /usr/local | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && pip3 install uwsgi && apk add --virtual .rundeps $runDeps && apk del .build-deps
3660 ---> Running in 28141a1d4b2a
3661fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
3662fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
3663(1/5) Installing python3-dev (3.6.8-r0)
3664(2/5) Installing linux-headers (4.4.6-r2)
3665(3/5) Installing libressl-dev (2.5.5-r2)
3666(4/5) Installing postgresql-dev (9.6.13-r0)
3667(5/5) Installing .build-deps (0)
3668Executing busybox-1.26.2-r11.trigger
3669OK: 357 MiB in 77 packages
3670Collecting git+https://github.com/sixfeetup/django-access-tokens.git@22c72cbd59fab7dad6b05849b40863923eccf46a (from -r requirements.txt (line 23))
3671 Cloning https://github.com/sixfeetup/django-access-tokens.git (to revision 22c72cbd59fab7dad6b05849b40863923eccf46a) to /tmp/pip-req-build-jxu7kji1
3672 Running command git clone -q https://github.com/sixfeetup/django-access-tokens.git /tmp/pip-req-build-jxu7kji1
3673 Running command git checkout -q 22c72cbd59fab7dad6b05849b40863923eccf46a
3674Collecting bleach==2.1.2
3675 Downloading https://files.pythonhosted.org/packages/07/59/06f368f350cd7f226606c2bc7210c6b336312df62185de333c66d6180512/bleach-2.1.2-py2.py3-none-any.whl
3676Collecting coverage==4.5.1
3677 Downloading https://files.pythonhosted.org/packages/35/fe/e7df7289d717426093c68d156e0fd9117c8f4872b6588e8a8928a0f68424/coverage-4.5.1.tar.gz (379kB)
3678Collecting Django==2.1
3679 Downloading https://files.pythonhosted.org/packages/51/1a/e0ac7886c7123a03814178d7517dc822af0fe51a72e1a6bff26153103322/Django-2.1-py3-none-any.whl (7.3MB)
3680Collecting django-categories==1.6.0
3681 Downloading https://files.pythonhosted.org/packages/83/45/4d7c621063cf7cb782d160bc6aa10becaba351d4e6b6142285dc86a9a86a/django_categories-1.6-py2.py3-none-any.whl (89kB)
3682Collecting django-cors-headers==2.1.0
3683 Downloading https://files.pythonhosted.org/packages/10/97/40b519badff93449706cd2cab3f328e1898e627bb218e3429c5581ad1932/django_cors_headers-2.1.0-py2.py3-none-any.whl
3684Collecting django-filter==2.0.0
3685 Downloading https://files.pythonhosted.org/packages/6a/8b/8517167a0adc45ce94d0873efb9487dd4cdeff7e10f96e837ad3d58f5837/django_filter-2.0.0-py3-none-any.whl (69kB)
3686Collecting django-fsm==2.6.0
3687 Downloading https://files.pythonhosted.org/packages/cc/81/6074f9e46a81e004b84d9000e7805c6620fa56e43c5eb30a04ae176fcba1/django_fsm-2.6.0-py2.py3-none-any.whl
3688Collecting django-fsm-log==1.5.0
3689 Downloading https://files.pythonhosted.org/packages/8e/6a/771b3928cfc6e00e5ff9dd83e357b8713be3035ddc05f1859035f64f61e5/django_fsm_log-1.5.0-py3-none-any.whl
3690Collecting django-imagekit==4.0.2
3691 Downloading https://files.pythonhosted.org/packages/e5/2a/a5c62376e897c23d1ce21be86c18e68096cb8c83df7d010d24ca81139e9e/django_imagekit-4.0.2-py2.py3-none-any.whl (47kB)
3692Collecting django-log-request-id==1.3.2
3693 Downloading https://files.pythonhosted.org/packages/f5/bf/dee54a31dd3148446cf0662a675e158ea9e77ce284a86ff509baad1662e7/django-log-request-id-1.3.2.tar.gz
3694Collecting django-oauth-toolkit==1.0.0
3695 Downloading https://files.pythonhosted.org/packages/e2/f0/3bd6fb9f17c375ac0f3f4f8a4879d240a5a5508557b77e696a665fceeb23/django_oauth_toolkit-1.0.0-py2.py3-none-any.whl (45kB)
3696Collecting django-permission==1.0.4
3697 Downloading https://files.pythonhosted.org/packages/96/31/a00c8e034e0447ccb2fd288b684b7a2d6790d5bcf2749311b26ca3d163ec/django_permission-1.0.4-py3-none-any.whl (59kB)
3698Collecting django-rest-elasticsearch==0.4.1
3699 Downloading https://files.pythonhosted.org/packages/f6/28/9b1039bfaeb8aa489d15d9118e51a6a3708f052c004c8a60b9f3fd3f88b8/django-rest-elasticsearch-0.4.1.tar.gz
3700Collecting django-rest-swagger==2.1.2
3701 Downloading https://files.pythonhosted.org/packages/2c/12/28d0677756283d913f8371ad7590e16f5e6c8444044f5b1b1586f956e610/django_rest_swagger-2.1.2-py2.py3-none-any.whl (747kB)
3702Obtaining django-session-header from git+https://github.com/kball/django-session-header.git#egg=django-session-header (from -r requirements.txt (line 15))
3703 Cloning https://github.com/kball/django-session-header.git to ./src/django-session-header
3704 Running command git clone -q https://github.com/kball/django-session-header.git /opt/code/src/django-session-header
3705Collecting django-simple-history==2.5.1
3706 Downloading https://files.pythonhosted.org/packages/54/3d/9129a60f8563fe3e02311acdee6d358c0f7e0584ff473579e98fc5b8b152/django_simple_history-2.5.1-py2.py3-none-any.whl
3707Collecting django-storages==1.6.5
3708 Downloading https://files.pythonhosted.org/packages/97/71/10c4c8c62b6fecca1960dcf828a7639baafddf088976a89b8dedc9124a39/django_storages-1.6.5-py2.py3-none-any.whl (47kB)
3709Collecting django-taggit==0.23.0
3710 Downloading https://files.pythonhosted.org/packages/39/ed/3607874788740674b7533586fc6b3e2249b5c5e9585882f0c8709e9a8c36/django_taggit-0.23.0-py2.py3-none-any.whl (44kB)
3711Collecting django-taggit-serializer==0.1.7
3712 Downloading https://files.pythonhosted.org/packages/68/c4/9737e1df18ca8af0f40f46a54af08a15d75eb7afd7805ba94c87fc042ae3/django-taggit-serializer-0.1.7.tar.gz
3713Collecting djangorestframework==3.9.0
3714 Downloading https://files.pythonhosted.org/packages/99/0b/d37a5a96c5d301e23adcabcc2f3fa659fb34e6308590f95ebb50cdbe98a1/djangorestframework-3.9.0-py2.py3-none-any.whl (924kB)
3715Collecting elasticsearch-dsl==6.3.0
3716 Downloading https://files.pythonhosted.org/packages/61/13/9b6864dd05295e38afe019957a7736cde8826fc21019632d0b8e84cac7c0/elasticsearch_dsl-6.3.0-py2.py3-none-any.whl (48kB)
3717Collecting facebook-sdk==3.0.0
3718 Downloading https://files.pythonhosted.org/packages/64/80/a4bdc341dbd283ce4bf23445b9b3f36e21ba9fe2f130435e0892675704c4/facebook_sdk-3.0.0-py3-none-any.whl
3719Collecting google-api-python-client==1.7.9
3720 Downloading https://files.pythonhosted.org/packages/3f/f1/20fd18744c3d20307d634ffcc02592bc7efc45a59624e14655cf21cbfb5e/google_api_python_client-1.7.9-py3-none-any.whl (56kB)
3721Collecting google-auth==1.6.3
3722 Downloading https://files.pythonhosted.org/packages/c5/9b/ed0516cc1f7609fb0217e3057ff4f0f9f3e3ce79a369c6af4a6c5ca25664/google_auth-1.6.3-py2.py3-none-any.whl (73kB)
3723Collecting google-cloud-storage==1.6.0
3724 Downloading https://files.pythonhosted.org/packages/c8/13/131c4d6b72411bcd56ab82a70a256d961e8d87e7b6356c12791c0003765d/google_cloud_storage-1.6.0-py2.py3-none-any.whl (51kB)
3725Collecting oauth2client==4.1.3
3726 Downloading https://files.pythonhosted.org/packages/95/a9/4f25a14d23f0786b64875b91784607c2277eff25d48f915e39ff0cff505a/oauth2client-4.1.3-py2.py3-none-any.whl (98kB)
3727Collecting Pillow==4.3.0
3728 Downloading https://files.pythonhosted.org/packages/e0/82/ec499c78bfe4ecaa91c2f3000040451d187ed0a816d58b8543e29c48827f/Pillow-4.3.0.tar.gz (13.9MB)
3729Collecting psycopg2==2.7.3
3730 Downloading https://files.pythonhosted.org/packages/98/99/33ca02c4bc3ed1bd9ceab5614bda2e6d1d31e61ec58345b9feece238c38a/psycopg2-2.7.3.tar.gz (425kB)
3731Collecting pycryptodome==3.8.2
3732 Downloading https://files.pythonhosted.org/packages/e2/7b/12f76a8bd427ebc54f24a0df6fd776fda48087d6a9a32ae0dbc3341dac3f/pycryptodome-3.8.2.tar.gz (12.4MB)
3733Collecting pytest-django==3.1.2
3734 Downloading https://files.pythonhosted.org/packages/0f/c4/123ec7829e175af511c5be0501df9552261c2bf549b8e7a43ba35505594e/pytest_django-3.1.2-py2.py3-none-any.whl
3735Collecting python-gmaps==0.3.1
3736 Downloading https://files.pythonhosted.org/packages/71/1a/b5ac46de53b009327e4ce4ae6598069fc60d57e006b86bc40f251a9c9959/python_gmaps-0.3.1-py2.py3-none-any.whl
3737Collecting pyyaml==3.12
3738 Downloading https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz (253kB)
3739Collecting rollbar==0.14.1
3740 Downloading https://files.pythonhosted.org/packages/88/bd/aa1e91f4d5e706a7aaf771d028ccdc100ac95c9fe286c102d9795f6ff409/rollbar-0.14.1.tar.gz (59kB)
3741Collecting sendgrid-django==4.2.0
3742 Downloading https://files.pythonhosted.org/packages/f5/94/4749ff4acae2c2ca89c5acdf8449494ef4fbc4254a705866f07c6774ea8b/sendgrid-django-4.2.0.tar.gz
3743Collecting smtpapi==0.3.1
3744 Downloading https://files.pythonhosted.org/packages/21/de/380fd07226fb481bfb12f0b8e581363bede5801f7aad53d029fd0e38be62/smtpapi-0.3.1.tar.gz
3745Collecting stripe==2.35.0
3746 Downloading https://files.pythonhosted.org/packages/66/d0/9347c19912b18c92af558a5eb3ea93db90bf1a1472d3c31282517d996695/stripe-2.35.0-py2.py3-none-any.whl (198kB)
3747Collecting unittest-xml-reporting==2.2.0
3748 Downloading https://files.pythonhosted.org/packages/d4/82/28569924f68a539bd7b0cb966cfaac4de7f805201d1384d653aae0806bac/unittest_xml_reporting-2.2.0-py2.py3-none-any.whl
3749Collecting uwsgi==2.0.17.1
3750 Downloading https://files.pythonhosted.org/packages/a2/c9/a2d5737f63cd9df4317a4acc15d1ddf4952e28398601d8d7d706c16381e0/uwsgi-2.0.17.1.tar.gz (800kB)
3751Collecting google-cloud-talent==0.3.0
3752 Downloading https://files.pythonhosted.org/packages/14/48/da8d2192d5922acd6c0a38aa2371802d5a80dc57da360a2dc078af450cf4/google_cloud_talent-0.3.0-py2.py3-none-any.whl (269kB)
3753Collecting google-api-core==1.14.2
3754 Downloading https://files.pythonhosted.org/packages/71/e5/7059475b3013a3c75abe35015c5761735ab224eb1b129fee7c8e376e7805/google_api_core-1.14.2-py2.py3-none-any.whl (68kB)
3755Collecting grpcio==1.24.0
3756 Downloading https://files.pythonhosted.org/packages/5d/44/26b8e581a12837cc44a82fcdef6edcaa8b220d4f6ded1e3267f9ce126f48/grpcio-1.24.0.tar.gz (14.1MB)
3757Collecting filestack-python==3.0.1
3758 Downloading https://files.pythonhosted.org/packages/63/df/d06fd4b3761b59fa4a3876529e1824ffdb1481136285b1141255640a761f/filestack_python-3.0.1-py3-none-any.whl
3759Collecting html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre
3760 Downloading https://files.pythonhosted.org/packages/a5/62/bbd2be0e7943ec8504b517e62bab011b4946e1258842bc159e5dfde15b96/html5lib-1.0.1-py2.py3-none-any.whl (117kB)
3761Collecting six
3762 Downloading https://files.pythonhosted.org/packages/65/26/32b8464df2a97e6dd1b656ed26b2c194606c16fe163c695a992b36c11cdf/six-1.13.0-py2.py3-none-any.whl
3763Collecting pytz
3764 Downloading https://files.pythonhosted.org/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl (509kB)
3765Collecting django-mptt<0.10,>=0.9.0
3766 Downloading https://files.pythonhosted.org/packages/46/ec/415a72ff8c41be0e00900941fad48b3c696fd1da7f8e8ac1e6abc59d8981/django_mptt-0.9.1-py2.py3-none-any.whl (105kB)
3767Collecting unicode-slugify==0.1.3
3768 Downloading https://files.pythonhosted.org/packages/8c/ba/1a05f61c7fd72df85ae4dc1c7967a3e5a4b6c61f016e794bc7f09b2597c0/unicode-slugify-0.1.3.tar.gz
3769Collecting django-appconf
3770 Downloading https://files.pythonhosted.org/packages/f6/b3/fcec63afcf323581c4919f21e90ef8c8200034108a6a0ab47a6bf6a9327b/django_appconf-1.0.3-py2.py3-none-any.whl
3771Collecting pilkit>=0.2.0
3772 Downloading https://files.pythonhosted.org/packages/c4/5c/318d9c20f309e6a79ea4d4605f86597d05f3e007d3d1925ff02474808659/pilkit-2.0.tar.gz (161kB)
3773Collecting requests>=2.13.0
3774 Downloading https://files.pythonhosted.org/packages/51/bd/23c926cd341ea6b7dd0b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl (57kB)
3775Collecting oauthlib>=2.0.1
3776 Downloading https://files.pythonhosted.org/packages/05/57/ce2e7a8fa7c0afb54a0581b14a65b56e62b5759dbc98e80627142b8a3704/oauthlib-3.1.0-py2.py3-none-any.whl (147kB)
3777Collecting app-version
3778 Downloading https://files.pythonhosted.org/packages/a7/03/5eeff1025f889d8d85738078c4f48e806aafe27c93ed1a52f3fbec029b06/app_version-1.0.1-py3-none-any.whl
3779Collecting pytest-runner
3780 Downloading https://files.pythonhosted.org/packages/16/45/81b5262c0efc08882bdf183b788e6d28e3d684863990996d8b60967d48da/pytest_runner-5.2-py2.py3-none-any.whl
3781Collecting coreapi>=2.3.0
3782 Downloading https://files.pythonhosted.org/packages/fc/3a/9dedaad22962770edd334222f2b3c3e7ad5e1c8cab1d6a7992c30329e2e5/coreapi-2.3.3-py2.py3-none-any.whl
3783Collecting openapi-codec>=1.3.1
3784 Downloading https://files.pythonhosted.org/packages/78/e5/e0b5aba60c645dde952bc8a9df1f2b0bef27302908839b0a29284c9245d4/openapi-codec-1.3.2.tar.gz
3785Collecting simplejson
3786 Downloading https://files.pythonhosted.org/packages/98/87/a7b98aa9256c8843f92878966dc3d8d914c14aad97e2c5ce4798d5743e07/simplejson-3.17.0.tar.gz (83kB)
3787Collecting elasticsearch<7.0.0,>=6.0.0
3788 Downloading https://files.pythonhosted.org/packages/e0/b3/14dd62dfee3b0bca512167edc6f8baf5149b1108a02f9f246021953d117c/elasticsearch-6.4.0-py2.py3-none-any.whl (81kB)
3789Collecting python-dateutil
3790 Downloading https://files.pythonhosted.org/packages/d4/70/d60450c3dd48ef87586924207ae8907090de0b306af2bce5d134d78615cb/python_dateutil-2.8.1-py2.py3-none-any.whl (227kB)
3791Collecting httplib2<1dev,>=0.9.2
3792 Downloading https://files.pythonhosted.org/packages/d2/84/f97b9efdb17c9b73e133bdbf2b4bfd09cd0be655e36e3ee3c4bec9095048/httplib2-0.14.0-py3-none-any.whl (94kB)
3793Collecting uritemplate<4dev,>=3.0.0
3794 Downloading https://files.pythonhosted.org/packages/e5/7d/9d5a640c4f8bf2c8b1afc015e9a9d8de32e13c9016dcc4b0ec03481fb396/uritemplate-3.0.0-py2.py3-none-any.whl
3795Collecting google-auth-httplib2>=0.0.3
3796 Downloading https://files.pythonhosted.org/packages/33/49/c814d6d438b823441552198f096fcd0377fd6c88714dbed34f1d3c8c4389/google_auth_httplib2-0.0.3-py2.py3-none-any.whl
3797Collecting cachetools>=2.0.0
3798 Downloading https://files.pythonhosted.org/packages/2f/a6/30b0a0bef12283e83e58c1d6e7b5aabc7acfc4110df81a4471655d33e704/cachetools-3.1.1-py2.py3-none-any.whl
3799Collecting pyasn1-modules>=0.2.1
3800 Downloading https://files.pythonhosted.org/packages/52/50/bb4cefca37da63a0c52218ba2cb1b1c36110d84dcbae8aa48cd67c5e95c2/pyasn1_modules-0.2.7-py2.py3-none-any.whl (131kB)
3801Collecting rsa>=3.1.4
3802 Downloading https://files.pythonhosted.org/packages/02/e5/38518af393f7c214357079ce67a317307936896e961e35450b70fad2a9cf/rsa-4.0-py2.py3-none-any.whl
3803Collecting google-resumable-media>=0.3.1
3804 Downloading https://files.pythonhosted.org/packages/35/9e/f73325d0466ce5bdc36333f1aeb2892ead7b76e79bdb5c8b0493961fa098/google_resumable_media-0.5.0-py2.py3-none-any.whl
3805Collecting google-cloud-core<0.29dev,>=0.28.0
3806 Downloading https://files.pythonhosted.org/packages/0f/41/ae2418b4003a14cf21c1c46d61d1b044bf02cf0f8f91598af572b9216515/google_cloud_core-0.28.1-py2.py3-none-any.whl
3807Collecting pyasn1>=0.1.7
3808 Downloading https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl (77kB)
3809Collecting olefile
3810 Downloading https://files.pythonhosted.org/packages/34/81/e1ac43c6b45b4c5f8d9352396a14144bba52c8fec72a80f425f6a4d653ad/olefile-0.46.zip (112kB)
3811Collecting pytest>=2.9
3812 Downloading https://files.pythonhosted.org/packages/da/ed/d22d7f06eb1107271694ed2171b9d52e8eea38d9757124e75ba13324ac77/pytest-5.3.1-py3-none-any.whl (233kB)
3813Collecting sendgrid<4,>=3.5
3814 Downloading https://files.pythonhosted.org/packages/d6/be/5c2cf158c9036224676b3b01042c27d722fba63b46cb87a4fdaf24fa3621/sendgrid-3.6.5-py2.py3-none-any.whl
3815Collecting googleapis-common-protos<2.0dev,>=1.6.0
3816 Downloading https://files.pythonhosted.org/packages/eb/ee/e59e74ecac678a14d6abefb9054f0bbcb318a6452a30df3776f133886d7d/googleapis-common-protos-1.6.0.tar.gz
3817Requirement already satisfied: setuptools>=34.0.0 in /usr/local/lib/python3.6/site-packages (from google-api-core==1.14.2->-r requirements.txt (line 41)) (42.0.2)
3818Collecting protobuf>=3.4.0
3819 Downloading https://files.pythonhosted.org/packages/4e/26/1517e42a81de4f28ed0f3cdadb628c1b72f3a28f38323a05e251f5df0a29/protobuf-3.11.1-py2.py3-none-any.whl (434kB)
3820Collecting trafaret==1.2.0
3821 Downloading https://files.pythonhosted.org/packages/02/59/b502446f3985a9351ea4bfca4e90471668206d3a957e5e2ea256fc3d9d35/trafaret-1.2.0-py3-none-any.whl
3822Collecting webencodings
3823 Downloading https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl
3824Collecting django-js-asset
3825 Downloading https://files.pythonhosted.org/packages/aa/2d/98089cf51c8e83bc70723021390b94a3638a4a0ce30a47e2e70476b2095d/django_js_asset-1.2.2-py2.py3-none-any.whl
3826Collecting unidecode
3827 Downloading https://files.pythonhosted.org/packages/d0/42/d9edfed04228bacea2d824904cae367ee9efd05e6cce7ceaaedd0b0ad964/Unidecode-1.1.1-py2.py3-none-any.whl (238kB)
3828Collecting urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1
3829 Downloading https://files.pythonhosted.org/packages/b4/40/a9837291310ee1ccc242ceb6ebfd9eb21539649f193a7c8c86ba15b98539/urllib3-1.25.7-py2.py3-none-any.whl (125kB)
3830Collecting idna<2.9,>=2.5
3831 Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)
3832Collecting chardet<3.1.0,>=3.0.2
3833 Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (133kB)
3834Collecting certifi>=2017.4.17
3835 Downloading https://files.pythonhosted.org/packages/b9/63/df50cac98ea0d5b006c55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.whl (156kB)
3836Collecting coreschema
3837 Downloading https://files.pythonhosted.org/packages/93/08/1d105a70104e078718421e6c555b8b293259e7fc92f7e9a04869947f198f/coreschema-0.0.4.tar.gz
3838Collecting itypes
3839 Downloading https://files.pythonhosted.org/packages/d3/24/5e511590f95582efe64b8ad2f6dadd85c5563c9dcf40171ea5a70adbf5a9/itypes-1.1.0.tar.gz
3840Collecting more-itertools>=4.0.0
3841 Downloading https://files.pythonhosted.org/packages/5c/1d/3df99de956abb96305956e09e6a1fa955883295e1f28808f9c97b3d5364d/more_itertools-8.0.0-py3-none-any.whl (40kB)
3842Collecting wcwidth
3843 Downloading https://files.pythonhosted.org/packages/7e/9f/526a6947247599b084ee5232e4f9190a38f398d7300d866af3ab571a5bfe/wcwidth-0.1.7-py2.py3-none-any.whl
3844Collecting importlib-metadata>=0.12; python_version < "3.8"
3845 Downloading https://files.pythonhosted.org/packages/ed/82/ebece33bc20b9097683d09e47563d487e411e2cf3a37789d7ec0a88c4ce4/importlib_metadata-1.1.0-py2.py3-none-any.whl
3846Collecting attrs>=17.4.0
3847 Downloading https://files.pythonhosted.org/packages/a2/db/4313ab3be961f7a763066401fb77f7748373b6094076ae2bda2806988af6/attrs-19.3.0-py2.py3-none-any.whl
3848Collecting py>=1.5.0
3849 Downloading https://files.pythonhosted.org/packages/76/bc/394ad449851729244a97857ee14d7cba61ddb268dce3db538ba2f2ba1f0f/py-1.8.0-py2.py3-none-any.whl (83kB)
3850Collecting packaging
3851 Downloading https://files.pythonhosted.org/packages/cf/94/9672c2d4b126e74c4496c6b3c58a8b51d6419267be9e70660ba23374c875/packaging-19.2-py2.py3-none-any.whl
3852Collecting pluggy<1.0,>=0.12
3853 Downloading https://files.pythonhosted.org/packages/a0/28/85c7aa31b80d150b772fbe4a229487bc6644da9ccb7e427dd8cc60cb8a62/pluggy-0.13.1-py2.py3-none-any.whl
3854Collecting python-http-client>=2.1.1
3855 Downloading https://files.pythonhosted.org/packages/49/66/a7569f9b3c8e5cca347f9a171ae9e718e9ac66e1215be4ede7642b6953f2/python_http_client-3.2.1-py3-none-any.whl
3856Collecting jinja2
3857 Downloading https://files.pythonhosted.org/packages/65/e0/eb35e762802015cab1ccee04e8a277b03f1d8e53da3ec3106882ec42558b/Jinja2-2.10.3-py2.py3-none-any.whl (125kB)
3858Collecting zipp>=0.5
3859 Downloading https://files.pythonhosted.org/packages/74/3d/1ee25a26411ba0401b43c6376d2316a71addcc72ef8690b101b4ea56d76a/zipp-0.6.0-py2.py3-none-any.whl
3860Collecting pyparsing>=2.0.2
3861 Downloading https://files.pythonhosted.org/packages/c0/0c/fc2e007d9a992d997f04a80125b0f183da7fb554f1de701bbb70a8e7d479/pyparsing-2.4.5-py2.py3-none-any.whl (67kB)
3862Collecting MarkupSafe>=0.23
3863 Downloading https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz
3864Building wheels for collected packages: coverage, django-log-request-id, django-rest-elasticsearch, django-taggit-serializer, Pillow, psycopg2, pycryptodome, pyyaml, rollbar, sendgrid-django, smtpapi, uwsgi, grpcio, django-access-tokens, unicode-slugify, pilkit, openapi-codec, simplejson, olefile, googleapis-common-protos, coreschema, itypes, MarkupSafe
3865 Building wheel for coverage (setup.py): started
3866 Building wheel for coverage (setup.py): finished with status 'done'
3867 Created wheel for coverage: filename=coverage-4.5.1-cp36-cp36m-linux_x86_64.whl size=205522 sha256=164cf0faa1c2e6882ad6f1472d1f5a6b478a908317802c67795213920eda9f78
3868 Stored in directory: /root/.cache/pip/wheels/24/76/26/c60de6a591b00f71dcf87941eb41b8f29820857eade91fe66f
3869 Building wheel for django-log-request-id (setup.py): started
3870 Building wheel for django-log-request-id (setup.py): finished with status 'done'
3871 Created wheel for django-log-request-id: filename=django_log_request_id-1.3.2-cp36-none-any.whl size=4773 sha256=58a1a70b4377b9e0b7c3e09308b746714b14f9e31402e239071ae12e73fd0a32
3872 Stored in directory: /root/.cache/pip/wheels/bd/71/c4/6f55d83a1de094261cfb321b2f4513a64ddf99a63fe309ed50
3873 Building wheel for django-rest-elasticsearch (setup.py): started
3874 Building wheel for django-rest-elasticsearch (setup.py): finished with status 'done'
3875 Created wheel for django-rest-elasticsearch: filename=django_rest_elasticsearch-0.4.1-py2.py3-none-any.whl size=20342 sha256=1e5ca2bcfb67ddacac97153f15cd5ef4c866a4ba4e65efd66d5e04ca0d4399af
3876 Stored in directory: /root/.cache/pip/wheels/94/ed/12/a69316d082be71026cd06ebbb88e1e6c1fe3ecc4bd4537cfc9
3877 Building wheel for django-taggit-serializer (setup.py): started
3878 Building wheel for django-taggit-serializer (setup.py): finished with status 'done'
3879 Created wheel for django-taggit-serializer: filename=django_taggit_serializer-0.1.7-py2.py3-none-any.whl size=4265 sha256=fa7a12f4fd2ec468501bed6350c0976e06a14080cbdd9b0576c765c28fcd0063
3880 Stored in directory: /root/.cache/pip/wheels/80/1c/0a/17b28dfcfb239e710909442828a233178d317736cc1d2428e1
3881 Building wheel for Pillow (setup.py): started
3882 Building wheel for Pillow (setup.py): finished with status 'done'
3883 Created wheel for Pillow: filename=Pillow-4.3.0-cp36-cp36m-linux_x86_64.whl size=1007484 sha256=30bd1eac056a5a9e0e1a0e19298af5ae4af5c89cf8f8bd361295d96dab02f3c7
3884 Stored in directory: /root/.cache/pip/wheels/d3/76/57/6c5538f861923b84e929701ee1cdb43ade1a3f72951c3b7d7d
3885 Building wheel for psycopg2 (setup.py): started
3886 Building wheel for psycopg2 (setup.py): finished with status 'done'
3887 Created wheel for psycopg2: filename=psycopg2-2.7.3-cp36-cp36m-linux_x86_64.whl size=486278 sha256=89d340d1cc16902ecc49345331884f7d979a31e036f7f1e938368f6b0820dc87
3888 Stored in directory: /root/.cache/pip/wheels/49/5b/a8/0597f288d04bb101bb25e84e6b4fd5bdc21ea6a08f9b0110cd
3889 Building wheel for pycryptodome (setup.py): started
3890 Building wheel for pycryptodome (setup.py): finished with status 'done'
3891 Created wheel for pycryptodome: filename=pycryptodome-3.8.2-cp36-cp36m-linux_x86_64.whl size=9670720 sha256=8aac06684fed6b50985c4593526096e8d1a70422f962532f370c694d3451bcdf
3892 Stored in directory: /root/.cache/pip/wheels/b6/80/c2/c0807b56c91ff91ce86758ea48b41cde42ab50d88764847eca
3893 Building wheel for pyyaml (setup.py): started
3894 Building wheel for pyyaml (setup.py): finished with status 'done'
3895 Created wheel for pyyaml: filename=PyYAML-3.12-cp36-cp36m-linux_x86_64.whl size=43059 sha256=6022bb735dc295ee69c5e60bfa795d90652e1eba030bb632948e7e58ce4a25f0
3896 Stored in directory: /root/.cache/pip/wheels/03/05/65/bdc14f2c6e09e82ae3e0f13d021e1b6b2481437ea2f207df3f
3897 Building wheel for rollbar (setup.py): started
3898 Building wheel for rollbar (setup.py): finished with status 'done'
3899 Created wheel for rollbar: filename=rollbar-0.14.1-cp36-none-any.whl size=65180 sha256=6f450b0ffdf0fed0258aced3eb181490bcadfaf0d6f0fe6c11410f498b51adef
3900 Stored in directory: /root/.cache/pip/wheels/97/13/f8/ae0f642883f19fd81cf30e64ab3f64bf83a6e706495779242e
3901 Building wheel for sendgrid-django (setup.py): started
3902 Building wheel for sendgrid-django (setup.py): finished with status 'done'
3903 Created wheel for sendgrid-django: filename=sendgrid_django-4.2.0-py2.py3-none-any.whl size=5513 sha256=bd2f6db4f8b72854ee32d3e74c9bd59a794b7609da2f1f90dab94fdce15013dc
3904 Stored in directory: /root/.cache/pip/wheels/e2/82/2b/a256175be8210205d5a6a6c67d1f18fdd783d09b555295d736
3905 Building wheel for smtpapi (setup.py): started
3906 Building wheel for smtpapi (setup.py): finished with status 'done'
3907 Created wheel for smtpapi: filename=smtpapi-0.3.1-cp36-none-any.whl size=2859 sha256=2d34a6820f8be4c5d8af96ffa7c3e5417eb0e15459107d83f813a980fc1b0cdf
3908 Stored in directory: /root/.cache/pip/wheels/06/3c/46/855f13309cfa73142116b391738e2aa75698e82b24f0391b62
3909 Building wheel for uwsgi (setup.py): started
3910 Building wheel for uwsgi (setup.py): finished with status 'done'
3911 Created wheel for uwsgi: filename=uWSGI-2.0.17.1-cp36-cp36m-linux_x86_64.whl size=552159 sha256=689d0489f52c6a055b4e85f7a401508b90010a26fe4ae2b11663821efdd6054c
3912 Stored in directory: /root/.cache/pip/wheels/32/d6/90/0239cc69219013d9f402b098b7c5ef7454792c21acd1d6c24e
3913 Building wheel for grpcio (setup.py): started
3914 Building wheel for grpcio (setup.py): still running...
3915 Building wheel for grpcio (setup.py): still running...
3916 Building wheel for grpcio (setup.py): still running...
3917 Building wheel for grpcio (setup.py): still running...
3918 Building wheel for grpcio (setup.py): still running...
3919 Building wheel for grpcio (setup.py): still running...
3920 Building wheel for grpcio (setup.py): still running...
3921 Building wheel for grpcio (setup.py): still running...
3922 Building wheel for grpcio (setup.py): still running...
3923 Building wheel for grpcio (setup.py): finished with status 'done'
3924 Created wheel for grpcio: filename=grpcio-1.24.0-cp36-cp36m-linux_x86_64.whl size=13221810 sha256=1906d258987e27bc4c4b335e25a262b2163ac4e5545b14fd93bcb13f9ac34a01
3925 Stored in directory: /root/.cache/pip/wheels/65/44/88/f9ed728ffaaa5d525e5fde2ba34c3157466e8d78db4325fd51
3926 Building wheel for django-access-tokens (setup.py): started
3927 Building wheel for django-access-tokens (setup.py): finished with status 'done'
3928 Created wheel for django-access-tokens: filename=django_access_tokens-0.9.2-cp36-none-any.whl size=7731 sha256=f621a5b650589c0c61ad6c3f7cdbad27645461bfaac728d3e1faf8c623bd4fdb
3929 Stored in directory: /tmp/pip-ephem-wheel-cache-jvdvgqpo/wheels/f1/90/41/c7d97473801359bde178deaca159adbef65390b4de9fafb1e5
3930 Building wheel for unicode-slugify (setup.py): started
3931 Building wheel for unicode-slugify (setup.py): finished with status 'done'
3932 Created wheel for unicode-slugify: filename=unicode_slugify-0.1.3-cp36-none-any.whl size=5004 sha256=097740ff41ea87d881ed8a5d5d16fc6ebc974307a55c96e663900ce5337b0c22
3933 Stored in directory: /root/.cache/pip/wheels/00/86/80/77ea75d401d5d6550a79179f76c6b26fe1280d40fb447ea4f3
3934 Building wheel for pilkit (setup.py): started
3935 Building wheel for pilkit (setup.py): finished with status 'done'
3936 Created wheel for pilkit: filename=pilkit-2.0-cp36-none-any.whl size=18295 sha256=5696193a392683d6e92240796c24ef04bd6355601cfe1d5f66b6da616ddde1bb
3937 Stored in directory: /root/.cache/pip/wheels/83/87/b9/db03ec06109a48529da8ba6315550ec177c6d749f50bd85932
3938 Building wheel for openapi-codec (setup.py): started
3939 Building wheel for openapi-codec (setup.py): finished with status 'done'
3940 Created wheel for openapi-codec: filename=openapi_codec-1.3.2-cp36-none-any.whl size=7308 sha256=a56b8ff0d11ef33a5c70614742e21431df708f10d62ad5af8cfb83b3d432f0a1
3941 Stored in directory: /root/.cache/pip/wheels/6a/16/01/190a15aa7834cadccb6fcc9be4e9843fe7c20260157c799ede
3942 Building wheel for simplejson (setup.py): started
3943 Building wheel for simplejson (setup.py): finished with status 'done'
3944 Created wheel for simplejson: filename=simplejson-3.17.0-cp36-cp36m-linux_x86_64.whl size=121297 sha256=d0faadacba15cc2fa093c7836d633f28c4d32dc8cb64fe4f2cdbb9b1de411dda
3945 Stored in directory: /root/.cache/pip/wheels/86/c0/83/dcd0339abb2640544bb8e0938aab2d069cef55e5647ce6e097
3946 Building wheel for olefile (setup.py): started
3947 Building wheel for olefile (setup.py): finished with status 'done'
3948 Created wheel for olefile: filename=olefile-0.46-py2.py3-none-any.whl size=35417 sha256=604a47ae819ee7cc1f7854b524fe7217d3a44193b314eddcfd94783cf116b6df
3949 Stored in directory: /root/.cache/pip/wheels/4b/f4/11/bc4166107c27f07fd7bba707ffcb439619197638a1ac986df3
3950 Building wheel for googleapis-common-protos (setup.py): started
3951 Building wheel for googleapis-common-protos (setup.py): finished with status 'done'
3952 Created wheel for googleapis-common-protos: filename=googleapis_common_protos-1.6.0-cp36-none-any.whl size=77578 sha256=72013ce18592973831d469b7f6366591416cbbe752bc13d27c7a396784045d9a
3953 Stored in directory: /root/.cache/pip/wheels/9e/3d/a2/1bec8bb7db80ab3216dbc33092bb7ccd0debfb8ba42b5668d5
3954 Building wheel for coreschema (setup.py): started
3955 Building wheel for coreschema (setup.py): finished with status 'done'
3956 Created wheel for coreschema: filename=coreschema-0.0.4-cp36-none-any.whl size=15033 sha256=9c7267203d5d2bf60534d66fe1658fa7ef9600256b08ef6dd9382806db6cb770
3957 Stored in directory: /root/.cache/pip/wheels/10/7b/ba/04fcd6b33e6123ca11a5f5ab56decb1a2d87ced028377a1377
3958 Building wheel for itypes (setup.py): started
3959 Building wheel for itypes (setup.py): finished with status 'done'
3960 Created wheel for itypes: filename=itypes-1.1.0-cp36-none-any.whl size=2313 sha256=e714b1635e5fb13692e16dfb97a6ad255e1e84f57f5664cb8529d4d44aaa991c
3961 Stored in directory: /root/.cache/pip/wheels/7b/52/af/4e27324812e7ab7bbbc30f748d317f3739477562325cb4c723
3962 Building wheel for MarkupSafe (setup.py): started
3963 Building wheel for MarkupSafe (setup.py): finished with status 'done'
3964 Created wheel for MarkupSafe: filename=MarkupSafe-1.1.1-cp36-cp36m-linux_x86_64.whl size=32429 sha256=d12847f0ec48b68c914c72cf7ca4890e23664e0f101650575c88bb8a3939ae5b
3965 Stored in directory: /root/.cache/pip/wheels/f2/aa/04/0edf07a1b8a5f5f1aed7580fffb69ce8972edc16a505916a77
3966Successfully built coverage django-log-request-id django-rest-elasticsearch django-taggit-serializer Pillow psycopg2 pycryptodome pyyaml rollbar sendgrid-django smtpapi uwsgi grpcio django-access-tokens unicode-slugify pilkit openapi-codec simplejson olefile googleapis-common-protos coreschema itypes MarkupSafe
3967ERROR: google-cloud-storage 1.6.0 has requirement google-api-core<0.2.0dev,>=0.1.1, but you'll have google-api-core 1.14.2 which is incompatible.
3968Installing collected packages: six, webencodings, html5lib, bleach, coverage, pytz, Django, django-js-asset, django-mptt, unidecode, unicode-slugify, django-categories, django-cors-headers, django-filter, django-fsm, django-appconf, django-fsm-log, pilkit, django-imagekit, django-log-request-id, urllib3, idna, chardet, certifi, requests, oauthlib, django-oauth-toolkit, app-version, django-permission, djangorestframework, elasticsearch, python-dateutil, elasticsearch-dsl, pytest-runner, django-rest-elasticsearch, uritemplate, MarkupSafe, jinja2, coreschema, itypes, coreapi, openapi-codec, simplejson, django-rest-swagger, django-session-header, django-simple-history, django-storages, django-taggit, django-taggit-serializer, facebook-sdk, httplib2, cachetools, pyasn1, pyasn1-modules, rsa, google-auth, google-auth-httplib2, google-api-python-client, protobuf, googleapis-common-protos, google-api-core, google-resumable-media, google-cloud-core, google-cloud-storage, oauth2client, olefile, Pillow, psycopg2, pycryptodome, more-itertools, wcwidth, zipp, importlib-metadata, attrs, py, pyparsing, packaging, pluggy, pytest, pytest-django, python-gmaps, pyyaml, rollbar, python-http-client, sendgrid, sendgrid-django, smtpapi, stripe, unittest-xml-reporting, uwsgi, google-cloud-talent, grpcio, trafaret, filestack-python, django-access-tokens
3969 Running setup.py develop for django-session-header
3970Successfully installed Django-2.1 MarkupSafe-1.1.1 Pillow-4.3.0 app-version-1.0.1 attrs-19.3.0 bleach-2.1.2 cachetools-3.1.1 certifi-2019.11.28 chardet-3.0.4 coreapi-2.3.3 coreschema-0.0.4 coverage-4.5.1 django-access-tokens-0.9.2 django-appconf-1.0.3 django-categories-1.6 django-cors-headers-2.1.0 django-filter-2.0.0 django-fsm-2.6.0 django-fsm-log-1.5.0 django-imagekit-4.0.2 django-js-asset-1.2.2 django-log-request-id-1.3.2 django-mptt-0.9.1 django-oauth-toolkit-1.0.0 django-permission-1.0.4 django-rest-elasticsearch-0.4.1 django-rest-swagger-2.1.2 django-session-header django-simple-history-2.5.1 django-storages-1.6.5 django-taggit-0.23.0 django-taggit-serializer-0.1.7 djangorestframework-3.9.0 elasticsearch-6.4.0 elasticsearch-dsl-6.3.0 facebook-sdk-3.0.0 filestack-python-3.0.1 google-api-core-1.14.2 google-api-python-client-1.7.9 google-auth-1.6.3 google-auth-httplib2-0.0.3 google-cloud-core-0.28.1 google-cloud-storage-1.6.0 google-cloud-talent-0.3.0 google-resumable-media-0.5.0 googleapis-common-protos-1.6.0 grpcio-1.24.0 html5lib-1.0.1 httplib2-0.14.0 idna-2.8 importlib-metadata-1.1.0 itypes-1.1.0 jinja2-2.10.3 more-itertools-8.0.0 oauth2client-4.1.3 oauthlib-3.1.0 olefile-0.46 openapi-codec-1.3.2 packaging-19.2 pilkit-2.0 pluggy-0.13.1 protobuf-3.11.1 psycopg2-2.7.3 py-1.8.0 pyasn1-0.4.8 pyasn1-modules-0.2.7 pycryptodome-3.8.2 pyparsing-2.4.5 pytest-5.3.1 pytest-django-3.1.2 pytest-runner-5.2 python-dateutil-2.8.1 python-gmaps-0.3.1 python-http-client-3.2.1 pytz-2019.3 pyyaml-3.12 requests-2.22.0 rollbar-0.14.1 rsa-4.0 sendgrid-3.6.5 sendgrid-django-4.2.0 simplejson-3.17.0 six-1.13.0 smtpapi-0.3.1 stripe-2.35.0 trafaret-1.2.0 unicode-slugify-0.1.3 unidecode-1.1.1 unittest-xml-reporting-2.2.0 uritemplate-3.0.0 urllib3-1.25.7 uwsgi-2.0.17.1 wcwidth-0.1.7 webencodings-0.5.1 zipp-0.6.0
3971Requirement already satisfied: uwsgi in /usr/local/lib/python3.6/site-packages (2.0.17.1)
3972(1/1) Installing .rundeps (0)
3973OK: 357 MiB in 78 packages
3974(1/5) Purging .build-deps (0)
3975(2/5) Purging python3-dev (3.6.8-r0)
3976(3/5) Purging linux-headers (4.4.6-r2)
3977(4/5) Purging postgresql-dev (9.6.13-r0)
3978(5/5) Purging libressl-dev (2.5.5-r2)
3979Executing busybox-1.26.2-r11.trigger
3980OK: 317 MiB in 73 packages
3981Removing intermediate container 28141a1d4b2a
3982 ---> 2d825e87eee4
3983Step 30/37 : ADD ./docker/server/uwsgi.ini.template /opt/server
3984 ---> 6f943748723d
3985Step 31/37 : ADD ./docker/server/nginx.conf.template /opt/server
3986 ---> 648b363003c3
3987Step 32/37 : ADD ./docker/server/start_server.sh /opt/server
3988 ---> 029b6e8a8c6d
3989Step 33/37 : ADD ./src/ /opt/code/
3990 ---> b194201d590f
3991Step 34/37 : ADD environment.env /opt/code/environment.env
3992 ---> 036a652814f6
3993Step 35/37 : EXPOSE 80
3994 ---> Running in 06beaf9da1db
3995Removing intermediate container 06beaf9da1db
3996 ---> 2559e219edaf
3997Step 36/37 : CMD ["/bin/sh", "/opt/server/start_server.sh"]
3998 ---> Running in 2c83bfe8c606
3999Removing intermediate container 2c83bfe8c606
4000 ---> a775815643c2
4001Step 37/37 : HEALTHCHECK CMD curl --fail http://localhost/healthcheck/
4002 ---> Running in cf999ce24643
4003Removing intermediate container cf999ce24643
4004 ---> 1c2b6e4092de
4005Successfully built 1c2b6e4092de
4006Successfully tagged getit_dev-server:latest
4007Creating elasticsearch-composed ... done
4008Creating getit_log_1 ... done
4009Creating getit_db_1 ... done
4010Creating messages-internal-dev-composed ... done
4011Creating internal-cbs-dev-composed ... done
4012Creating click-server-dev-composed ... done
4013Creating adapult-api-composed ... done
4014Creating getit-dev ... done
4015Attaching to getit-dev
4016getit-dev | SETTINGS CRITICAL STARTING SERVER IN DEBUG MODE
4017getit-dev | SETTINGS INFO ALLOWED_HOSTS: ['localhost', 'server']
4018getit-dev | api: WARNING [2019-12-04 03:02:00,787] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.006s]
4019getit-dev | Traceback (most recent call last):
4020getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4021getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4022getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4023getit-dev | raise err
4024getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4025getit-dev | sock.connect(sa)
4026getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4027getit-dev |
4028getit-dev | During handling of the above exception, another exception occurred:
4029getit-dev |
4030getit-dev | Traceback (most recent call last):
4031getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4032getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4033getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4034getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4035getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4036getit-dev | raise six.reraise(type(error), error, _stacktrace)
4037getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4038getit-dev | raise value
4039getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4040getit-dev | chunked=chunked,
4041getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4042getit-dev | conn.request(method, url, **httplib_request_kw)
4043getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4044getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4045getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4046getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4047getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4048getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4049getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4050getit-dev | self.send(msg)
4051getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4052getit-dev | self.connect()
4053getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4054getit-dev | conn = self._new_conn()
4055getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4056getit-dev | self, "Failed to establish a new connection: %s" % e
4057getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c0f0cc0>: Failed to establish a new connection: [Errno 111] Connection refused
4058getit-dev | api: WARNING [2019-12-04 03:02:01,831] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.022s]
4059getit-dev | Traceback (most recent call last):
4060getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4061getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4062getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4063getit-dev | raise err
4064getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4065getit-dev | sock.connect(sa)
4066getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4067getit-dev |
4068getit-dev | During handling of the above exception, another exception occurred:
4069getit-dev |
4070getit-dev | Traceback (most recent call last):
4071getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4072getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4073getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4074getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4075getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4076getit-dev | raise six.reraise(type(error), error, _stacktrace)
4077getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4078getit-dev | raise value
4079getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4080getit-dev | chunked=chunked,
4081getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4082getit-dev | conn.request(method, url, **httplib_request_kw)
4083getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4084getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4085getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4086getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4087getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4088getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4089getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4090getit-dev | self.send(msg)
4091getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4092getit-dev | self.connect()
4093getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4094getit-dev | conn = self._new_conn()
4095getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4096getit-dev | self, "Failed to establish a new connection: %s" % e
4097getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c0f0ef0>: Failed to establish a new connection: [Errno 111] Connection refused
4098getit-dev | api: WARNING [2019-12-04 03:02:04,872] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.008s]
4099getit-dev | Traceback (most recent call last):
4100getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4101getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4102getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4103getit-dev | raise err
4104getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4105getit-dev | sock.connect(sa)
4106getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4107getit-dev |
4108getit-dev | During handling of the above exception, another exception occurred:
4109getit-dev |
4110getit-dev | Traceback (most recent call last):
4111getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4112getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4113getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4114getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4115getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4116getit-dev | raise six.reraise(type(error), error, _stacktrace)
4117getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4118getit-dev | raise value
4119getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4120getit-dev | chunked=chunked,
4121getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4122getit-dev | conn.request(method, url, **httplib_request_kw)
4123getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4124getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4125getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4126getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4127getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4128getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4129getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4130getit-dev | self.send(msg)
4131getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4132getit-dev | self.connect()
4133getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4134getit-dev | conn = self._new_conn()
4135getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4136getit-dev | self, "Failed to establish a new connection: %s" % e
4137getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c951048>: Failed to establish a new connection: [Errno 111] Connection refused
4138getit-dev | api: WARNING [2019-12-04 03:02:11,903] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.014s]
4139getit-dev | Traceback (most recent call last):
4140getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4141getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4142getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4143getit-dev | raise err
4144getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4145getit-dev | sock.connect(sa)
4146getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4147getit-dev |
4148getit-dev | During handling of the above exception, another exception occurred:
4149getit-dev |
4150getit-dev | Traceback (most recent call last):
4151getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4152getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4153getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4154getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4155getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4156getit-dev | raise six.reraise(type(error), error, _stacktrace)
4157getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4158getit-dev | raise value
4159getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4160getit-dev | chunked=chunked,
4161getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4162getit-dev | conn.request(method, url, **httplib_request_kw)
4163getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4164getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4165getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4166getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4167getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4168getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4169getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4170getit-dev | self.send(msg)
4171getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4172getit-dev | self.connect()
4173getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4174getit-dev | conn = self._new_conn()
4175getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4176getit-dev | self, "Failed to establish a new connection: %s" % e
4177getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c951358>: Failed to establish a new connection: [Errno 111] Connection refused
4178getit-dev | api: ERROR [2019-12-04 03:02:11,911] [none] getit.models.tags: ConnectionError(<urllib3.connection.HTTPConnection object at 0x7eff9c951358>: Failed to establish a new connection: [Errno 111] Connection refused) caused by: NewConnectionError(<urllib3.connection.HTTPConnection object at 0x7eff9c951358>: Failed to establish a new connection: [Errno 111] Connection refused)
4179getit-dev | api: WARNING [2019-12-04 03:02:12,013] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.010s]
4180getit-dev | Traceback (most recent call last):
4181getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4182getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4183getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4184getit-dev | raise err
4185getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4186getit-dev | sock.connect(sa)
4187getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4188getit-dev |
4189getit-dev | During handling of the above exception, another exception occurred:
4190getit-dev |
4191getit-dev | Traceback (most recent call last):
4192getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4193getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4194getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4195getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4196getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4197getit-dev | raise six.reraise(type(error), error, _stacktrace)
4198getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4199getit-dev | raise value
4200getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4201getit-dev | chunked=chunked,
4202getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4203getit-dev | conn.request(method, url, **httplib_request_kw)
4204getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4205getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4206getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4207getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4208getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4209getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4210getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4211getit-dev | self.send(msg)
4212getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4213getit-dev | self.connect()
4214getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4215getit-dev | conn = self._new_conn()
4216getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4217getit-dev | self, "Failed to establish a new connection: %s" % e
4218getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199898>: Failed to establish a new connection: [Errno 111] Connection refused
4219getit-dev | api: WARNING [2019-12-04 03:02:13,043] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.017s]
4220getit-dev | Traceback (most recent call last):
4221getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4222getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4223getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4224getit-dev | raise err
4225getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4226getit-dev | sock.connect(sa)
4227getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4228getit-dev |
4229getit-dev | During handling of the above exception, another exception occurred:
4230getit-dev |
4231getit-dev | Traceback (most recent call last):
4232getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4233getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4234getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4235getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4236getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4237getit-dev | raise six.reraise(type(error), error, _stacktrace)
4238getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4239getit-dev | raise value
4240getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4241getit-dev | chunked=chunked,
4242getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4243getit-dev | conn.request(method, url, **httplib_request_kw)
4244getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4245getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4246getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4247getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4248getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4249getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4250getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4251getit-dev | self.send(msg)
4252getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4253getit-dev | self.connect()
4254getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4255getit-dev | conn = self._new_conn()
4256getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4257getit-dev | self, "Failed to establish a new connection: %s" % e
4258getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199940>: Failed to establish a new connection: [Errno 111] Connection refused
4259getit-dev | api: WARNING [2019-12-04 03:02:16,066] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.006s]
4260getit-dev | Traceback (most recent call last):
4261getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4262getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4263getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4264getit-dev | raise err
4265getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4266getit-dev | sock.connect(sa)
4267getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4268getit-dev |
4269getit-dev | During handling of the above exception, another exception occurred:
4270getit-dev |
4271getit-dev | Traceback (most recent call last):
4272getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4273getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4274getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4275getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4276getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4277getit-dev | raise six.reraise(type(error), error, _stacktrace)
4278getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4279getit-dev | raise value
4280getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4281getit-dev | chunked=chunked,
4282getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4283getit-dev | conn.request(method, url, **httplib_request_kw)
4284getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4285getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4286getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4287getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4288getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4289getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4290getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4291getit-dev | self.send(msg)
4292getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4293getit-dev | self.connect()
4294getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4295getit-dev | conn = self._new_conn()
4296getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4297getit-dev | self, "Failed to establish a new connection: %s" % e
4298getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199a20>: Failed to establish a new connection: [Errno 111] Connection refused
4299getit-dev | api: WARNING [2019-12-04 03:02:23,055] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.018s]
4300getit-dev | Traceback (most recent call last):
4301getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4302getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4303getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4304getit-dev | raise err
4305getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4306getit-dev | sock.connect(sa)
4307getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4308getit-dev |
4309getit-dev | During handling of the above exception, another exception occurred:
4310getit-dev |
4311getit-dev | Traceback (most recent call last):
4312getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4313getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4314getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4315getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4316getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4317getit-dev | raise six.reraise(type(error), error, _stacktrace)
4318getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4319getit-dev | raise value
4320getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4321getit-dev | chunked=chunked,
4322getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4323getit-dev | conn.request(method, url, **httplib_request_kw)
4324getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4325getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4326getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4327getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4328getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4329getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4330getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4331getit-dev | self.send(msg)
4332getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4333getit-dev | self.connect()
4334getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4335getit-dev | conn = self._new_conn()
4336getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4337getit-dev | self, "Failed to establish a new connection: %s" % e
4338getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199b00>: Failed to establish a new connection: [Errno 111] Connection refused
4339getit-dev | api: ERROR [2019-12-04 03:02:23,078] [none] getit.models.listings: ConnectionError(<urllib3.connection.HTTPConnection object at 0x7eff9c199b00>: Failed to establish a new connection: [Errno 111] Connection refused) caused by: NewConnectionError(<urllib3.connection.HTTPConnection object at 0x7eff9c199b00>: Failed to establish a new connection: [Errno 111] Connection refused)
4340getit-dev | api: WARNING [2019-12-04 03:02:24,539] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.006s]
4341getit-dev | Traceback (most recent call last):
4342getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4343getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4344getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4345getit-dev | raise err
4346getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4347getit-dev | sock.connect(sa)
4348getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4349getit-dev |
4350getit-dev | During handling of the above exception, another exception occurred:
4351getit-dev |
4352getit-dev | Traceback (most recent call last):
4353getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4354getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4355getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4356getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4357getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4358getit-dev | raise six.reraise(type(error), error, _stacktrace)
4359getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4360getit-dev | raise value
4361getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4362getit-dev | chunked=chunked,
4363getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4364getit-dev | conn.request(method, url, **httplib_request_kw)
4365getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4366getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4367getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4368getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4369getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4370getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4371getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4372getit-dev | self.send(msg)
4373getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4374getit-dev | self.connect()
4375getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4376getit-dev | conn = self._new_conn()
4377getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4378getit-dev | self, "Failed to establish a new connection: %s" % e
4379getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132390>: Failed to establish a new connection: [Errno 111] Connection refused
4380getit-dev | api: WARNING [2019-12-04 03:02:25,570] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.016s]
4381getit-dev | Traceback (most recent call last):
4382getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4383getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4384getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4385getit-dev | raise err
4386getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4387getit-dev | sock.connect(sa)
4388getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4389getit-dev |
4390getit-dev | During handling of the above exception, another exception occurred:
4391getit-dev |
4392getit-dev | Traceback (most recent call last):
4393getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4394getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4395getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4396getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4397getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4398getit-dev | raise six.reraise(type(error), error, _stacktrace)
4399getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4400getit-dev | raise value
4401getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4402getit-dev | chunked=chunked,
4403getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4404getit-dev | conn.request(method, url, **httplib_request_kw)
4405getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4406getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4407getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4408getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4409getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4410getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4411getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4412getit-dev | self.send(msg)
4413getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4414getit-dev | self.connect()
4415getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4416getit-dev | conn = self._new_conn()
4417getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4418getit-dev | self, "Failed to establish a new connection: %s" % e
4419getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132470>: Failed to establish a new connection: [Errno 111] Connection refused
4420getit-dev | api: WARNING [2019-12-04 03:02:28,589] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.007s]
4421getit-dev | Traceback (most recent call last):
4422getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4423getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4424getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4425getit-dev | raise err
4426getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4427getit-dev | sock.connect(sa)
4428getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4429getit-dev |
4430getit-dev | During handling of the above exception, another exception occurred:
4431getit-dev |
4432getit-dev | Traceback (most recent call last):
4433getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4434getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4435getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4436getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4437getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4438getit-dev | raise six.reraise(type(error), error, _stacktrace)
4439getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4440getit-dev | raise value
4441getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4442getit-dev | chunked=chunked,
4443getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4444getit-dev | conn.request(method, url, **httplib_request_kw)
4445getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4446getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4447getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4448getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4449getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4450getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4451getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4452getit-dev | self.send(msg)
4453getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4454getit-dev | self.connect()
4455getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4456getit-dev | conn = self._new_conn()
4457getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4458getit-dev | self, "Failed to establish a new connection: %s" % e
4459getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132550>: Failed to establish a new connection: [Errno 111] Connection refused
4460getit-dev | api: WARNING [2019-12-04 03:02:35,620] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.005s]
4461getit-dev | Traceback (most recent call last):
4462getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
4463getit-dev | (self._dns_host, self.port), self.timeout, **extra_kw
4464getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
4465getit-dev | raise err
4466getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
4467getit-dev | sock.connect(sa)
4468getit-dev | ConnectionRefusedError: [Errno 111] Connection refused
4469getit-dev |
4470getit-dev | During handling of the above exception, another exception occurred:
4471getit-dev |
4472getit-dev | Traceback (most recent call last):
4473getit-dev | File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
4474getit-dev | method, url, body, retries=Retry(False), headers=request_headers, **kw
4475getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
4476getit-dev | method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
4477getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
4478getit-dev | raise six.reraise(type(error), error, _stacktrace)
4479getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
4480getit-dev | raise value
4481getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
4482getit-dev | chunked=chunked,
4483getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
4484getit-dev | conn.request(method, url, **httplib_request_kw)
4485getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
4486getit-dev | self._send_request(method, url, body, headers, encode_chunked)
4487getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
4488getit-dev | self.endheaders(body, encode_chunked=encode_chunked)
4489getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
4490getit-dev | self._send_output(message_body, encode_chunked=encode_chunked)
4491getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
4492getit-dev | self.send(msg)
4493getit-dev | File "/usr/local/lib/python3.6/http/client.py", line 964, in send
4494getit-dev | self.connect()
4495getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
4496getit-dev | conn = self._new_conn()
4497getit-dev | File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
4498getit-dev | self, "Failed to establish a new connection: %s" % e
4499getit-dev | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132630>: Failed to establish a new connection: [Errno 111] Connection refused
4500getit-dev | api: ERROR [2019-12-04 03:02:35,628] [none] getit.models.forum: ConnectionError(<urllib3.connection.HTTPConnection object at 0x7eff9c132630>: Failed to establish a new connection: [Errno 111] Connection refused) caused by: NewConnectionError(<urllib3.connection.HTTPConnection object at 0x7eff9c132630>: Failed to establish a new connection: [Errno 111] Connection refused)
4501getit-dev | api: WARNING [2019-12-04 03:02:42,951] [none] googleapiclient.discovery_cache: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
4502getit-dev | Traceback (most recent call last):
4503getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 36, in autodetect
4504getit-dev | from google.appengine.api import memcache
4505getit-dev | ModuleNotFoundError: No module named 'google.appengine'
4506getit-dev |
4507getit-dev | During handling of the above exception, another exception occurred:
4508getit-dev |
4509getit-dev | Traceback (most recent call last):
4510getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 33, in <module>
4511getit-dev | from oauth2client.contrib.locked_file import LockedFile
4512getit-dev | ModuleNotFoundError: No module named 'oauth2client.contrib.locked_file'
4513getit-dev |
4514getit-dev | During handling of the above exception, another exception occurred:
4515getit-dev |
4516getit-dev | Traceback (most recent call last):
4517getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 37, in <module>
4518getit-dev | from oauth2client.locked_file import LockedFile
4519getit-dev | ModuleNotFoundError: No module named 'oauth2client.locked_file'
4520getit-dev |
4521getit-dev | During handling of the above exception, another exception occurred:
4522getit-dev |
4523getit-dev | Traceback (most recent call last):
4524getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 41, in autodetect
4525getit-dev | from . import file_cache
4526getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 41, in <module>
4527getit-dev | 'file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth')
4528getit-dev | ImportError: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
4529getit-dev | api: INFO [2019-12-04 03:02:42,956] [none] googleapiclient.discovery: URL being requested: GET https://jobs.googleapis.com/$discovery/rest?version=v4beta1
4530getit-dev | Operations to perform:
4531getit-dev | Apply all migrations: admin, auth, categories, contenttypes, getit, identity, oauth2_provider, sessions, taggit
4532getit-dev | Running pre-migrate handlers for application admin
4533getit-dev | Running pre-migrate handlers for application auth
4534getit-dev | Running pre-migrate handlers for application contenttypes
4535getit-dev | Running pre-migrate handlers for application sessions
4536getit-dev | Running pre-migrate handlers for application oauth2_provider
4537getit-dev | Running pre-migrate handlers for application corsheaders
4538getit-dev | Running pre-migrate handlers for application taggit
4539getit-dev | Running pre-migrate handlers for application permission
4540getit-dev | Running pre-migrate handlers for application categories
4541getit-dev | Running pre-migrate handlers for application editor
4542getit-dev | Running pre-migrate handlers for application django_filters
4543getit-dev | Running pre-migrate handlers for application simple_history
4544getit-dev | Running pre-migrate handlers for application identity
4545getit-dev | Running pre-migrate handlers for application getit
4546getit-dev | Running pre-migrate handlers for application imagekit
4547getit-dev | Running migrations:
4548getit-dev | Applying contenttypes.0001_initial... OK (0.093s)
4549getit-dev | Applying auth.0001_initial... OK (0.361s)
4550getit-dev | Applying admin.0001_initial... OK (0.113s)
4551getit-dev | Applying admin.0002_logentry_remove_auto_add... OK (0.033s)
4552getit-dev | Applying admin.0003_logentry_add_action_flag_choices... OK (0.031s)
4553getit-dev | Applying contenttypes.0002_remove_content_type_name... OK (0.101s)
4554getit-dev | Applying auth.0002_alter_permission_name_max_length... OK (0.031s)
4555getit-dev | Applying auth.0003_alter_user_email_max_length... OK (0.045s)
4556getit-dev | Applying auth.0004_alter_user_username_opts... OK (0.034s)
4557getit-dev | Applying auth.0005_alter_user_last_login_null... OK (0.048s)
4558getit-dev | Applying auth.0006_require_contenttypes_0002... OK (0.013s)
4559getit-dev | Applying auth.0007_alter_validators_add_error_messages... OK (0.035s)
4560getit-dev | Applying auth.0008_alter_user_username_max_length... OK (0.073s)
4561getit-dev | Applying auth.0009_alter_user_last_name_max_length... OK (0.041s)
4562getit-dev | Applying categories.0001_initial... OK (0.227s)
4563getit-dev | Applying categories.0002_auto_20170217_1111... OK (0.036s)
4564getit-dev | Applying sessions.0001_initial... OK (0.077s)
4565getit-dev | Applying getit.0001_initial... OK (0.156s)
4566getit-dev | Applying getit.0002_auto_20171101_2100... OK (0.029s)
4567getit-dev | Applying getit.0003_auto_20171102_1806... OK (0.171s)
4568getit-dev | Applying getit.0004_auto_20171103_2113... OK (0.128s)
4569getit-dev | Applying getit.0005_auto_20171103_2204... OK (0.209s)
4570getit-dev | Applying getit.0006_auto_20171103_2217... OK (0.124s)
4571getit-dev | Applying getit.0007_auto_20171104_1821... OK (0.132s)
4572getit-dev | Applying getit.0008_auto_20171107_0024... OK (0.300s)
4573getit-dev | Applying getit.0009_auto_20171107_1727... OK (0.508s)
4574getit-dev | Applying getit.0010_auto_20171114_1823... OK (0.103s)
4575getit-dev | Applying getit.0011_auto_20171127_1835... OK (1.733s)
4576getit-dev | Applying getit.0012_auto_20171129_2356... OK (0.219s)
4577getit-dev | Applying getit.0013_auto_20171201_1956... OK (1.038s)
4578getit-dev | Applying getit.0014_auto_20171205_1748... OK (0.104s)
4579getit-dev | Applying getit.0015_auto_20171213_1702... OK (0.724s)
4580getit-dev | Applying getit.0016_auto_20171226_2201... OK (0.429s)
4581getit-dev | Applying getit.0017_business_profile_picture... OK (0.231s)
4582getit-dev | Applying getit.0018_forumpost... OK (0.493s)
4583getit-dev | Applying getit.0019_forumpost_replies... OK (0.255s)
4584getit-dev | Applying getit.0020_historicalbusiness_historicaleventfields_historicalforumpost_historicalhousingfields_historicaljobfi... OK (2.456s)
4585getit-dev | Applying getit.0020_eventfields_performer... OK (0.340s)
4586getit-dev | Applying getit.0021_auto_20180111_2334... OK (0.763s)
4587getit-dev | Applying getit.0022_auto_20180120_0010... OK (0.685s)
4588getit-dev | Applying getit.0023_auto_20180305_2148... OK (1.502s)
4589getit-dev | Applying getit.0024_auto_20180312_1730... OK (1.180s)
4590getit-dev | Applying getit.0015_auto_20171208_2044... OK (0.306s)
4591getit-dev | Applying getit.0016_auto_20171208_2044... OK (0.147s)
4592getit-dev | Applying getit.0017_auto_20171208_2044... OK (0.127s)
4593getit-dev | Applying getit.0018_historicalmessage_reference... OK (0.241s)
4594getit-dev | Applying getit.0025_merge_20180313_1906... OK (0.011s)
4595getit-dev | Applying getit.0026_auto_20180314_2353... OK (0.029s)
4596getit-dev | Applying getit.0027_auto_20180315_1604... OK (0.195s)
4597getit-dev | Applying getit.0028_auto_20180315_1855... OK (0.733s)
4598getit-dev | Applying getit.0029_auto_20180316_2035... OK (1.151s)
4599getit-dev | Applying getit.0030_auto_20180403_0025... OK (2.196s)
4600getit-dev | Applying getit.0031_auto_20180403_1807... OK (0.256s)
4601getit-dev | Applying getit.0032_auto_20180409_1746... OK (0.505s)
4602getit-dev | Applying getit.0033_auto_20180410_1639... OK (0.574s)
4603getit-dev | Applying getit.0034_auto_20180410_1649... OK (1.364s)
4604getit-dev | Applying getit.0035_auto_20180413_1701... OK (3.838s)
4605getit-dev | Applying getit.0036_auto_20180413_1758... OK (0.325s)
4606getit-dev | Applying getit.0037_auto_20180413_1804... OK (10.112s)
4607getit-dev | Applying getit.0038_auto_20180416_1757... OK (0.656s)
4608getit-dev | Applying getit.0039_auto_20180416_2000... OK (1.076s)
4609getit-dev | Applying getit.0040_auto_20180426_2129... OK (0.572s)
4610getit-dev | Applying getit.0041_auto_20180507_1724... OK (6.711s)
4611getit-dev | Applying getit.0042_auto_20180508_2317... OK (1.816s)
4612getit-dev | Applying getit.0043_auto_20180618_1817... OK (0.363s)
4613getit-dev | Applying getit.0043_auto_20180530_2119... OK (0.935s)
4614getit-dev | Applying getit.0044_merge_20180627_1629... OK (0.011s)
4615getit-dev | Applying getit.0045_auto_20180802_1835... OK (1.845s)
4616getit-dev | Applying getit.0046_auto_20180814_1830... OK (0.395s)
4617getit-dev | Applying getit.0045_auto_20180828_2128... OK (0.445s)
4618getit-dev | Applying getit.0047_merge_20180829_2103... OK (0.012s)
4619getit-dev | Applying getit.0048_auto_20181025_2106... OK (0.405s)
4620getit-dev | Applying getit.0049_auto_20181116_1925... OK (0.238s)
4621getit-dev | Applying getit.0050_auto_20181203_2149... OK (16.642s)
4622getit-dev | Applying getit.0051_auto_20181204_2106... OK (7.487s)
4623getit-dev | Applying getit.0052_auto_20181205_0126... OK (0.619s)
4624getit-dev | Applying getit.0053_auto_20181207_2309... OK (2.434s)
4625getit-dev | Applying getit.0054_auto_20181207_2324... OK (0.598s)
4626getit-dev | Applying getit.0055_auto_20190125_0001... OK (0.768s)
4627getit-dev | Applying getit.0056_auto_20190301_2304... OK (1.502s)
4628getit-dev | Applying getit.0057_auto_20190302_0016... OK (2.218s)
4629getit-dev | Applying getit.0058_auto_20190304_1902... OK (2.270s)
4630getit-dev | Applying getit.0056_auto_20190304_2232... OK (0.963s)
4631getit-dev | Applying getit.0059_merge_20190305_2111... OK (0.014s)
4632getit-dev | Applying getit.0060_auto_20190320_2219... OK (0.640s)
4633getit-dev | Applying getit.0061_auto_20190325_2036... OK (1.556s)
4634getit-dev | Applying getit.0062_auto_20190325_2200... OK (1.421s)
4635getit-dev | Applying getit.0063_auto_20190425_2040... OK (1.365s)
4636getit-dev | Applying getit.0064_auto_20190502_1754... OK (1.777s)
4637getit-dev | Applying getit.0065_auto_20190513_2013... OK (2.985s)
4638getit-dev | Applying getit.0066_auto_20190607_1811... OK (1.698s)
4639getit-dev | Applying getit.0067_auto_20190711_2010... OK (0.895s)
4640getit-dev | Applying getit.0068_auto_20190715_1739... OK (3.778s)
4641getit-dev | Applying getit.0069_auto_20190715_2047... OK (33.354s)
4642getit-dev | Applying getit.0070_auto_20190715_2107... OK (2.592s)
4643getit-dev | Applying getit.0071_auto_20190715_2117... OK (55.815s)
4644getit-dev | Applying getit.0072_auto_20190716_1816... OK (15.486s)
4645getit-dev | Applying getit.0073_auto_20190717_1744... OK (7.643s)
4646getit-dev | Applying getit.0074_auto_20190723_2215... OK (2.045s)
4647getit-dev | Applying getit.0075_auto_20190813_1801... OK (4.706s)
4648getit-dev | Applying getit.0076_auto_20190814_2052... OK (5.394s)
4649getit-dev | Applying getit.0077_auto_20190815_2014... OK (3.800s)
4650getit-dev | Applying getit.0078_auto_20190820_1426... OK (6.098s)
4651getit-dev | Applying getit.0079_auto_20190822_2017... OK (0.786s)
4652getit-dev | Applying getit.0080_auto_20190826_2331... OK (2.868s)
4653getit-dev | Applying getit.0081_auto_20190827_1937... OK (5.871s)
4654getit-dev | Applying getit.0082_creditcard_fingerprint... OK (0.630s)
4655getit-dev | Applying getit.0083_auto_20190903_1914... OK (2.094s)
4656getit-dev | Applying getit.0082_auto_20190905_1626... OK (1.423s)
4657getit-dev | Applying getit.0084_merge_20190906_1656... OK (0.014s)
4658getit-dev | Applying getit.0085_auto_20190906_1714... OK (2.611s)
4659getit-dev | Applying getit.0086_auto_20190923_1506... OK (2.692s)
4660getit-dev | Applying getit.0087_auto_20190923_2154... OK (0.667s)
4661getit-dev | Applying getit.0088_auto_20190923_2210... OK (1.326s)
4662getit-dev | Applying getit.0089_auto_20191003_2126... OK (2.389s)
4663getit-dev | Applying getit.0090_sitemapcity... OK (0.886s)
4664getit-dev | Applying getit.0091_auto_20191007_2129... OK (5.005s)
4665getit-dev | Applying getit.0092_auto_20191025_1232... OK (3.372s)
4666getit-dev | Applying getit.0093_auto_20191029_0747... OK (9.117s)
4667getit-dev | Applying getit.0094_auto_20191101_1514... OK (2.850s)
4668getit-dev | Applying identity.0001_initial... OK (0.709s)
4669getit-dev | Applying identity.0002_authentication... OK (0.654s)
4670getit-dev | Applying oauth2_provider.0001_initial... OK (2.768s)
4671getit-dev | Applying oauth2_provider.0002_08_updates... OK (2.285s)
4672getit-dev | Applying oauth2_provider.0003_auto_20160316_1503... OK (0.655s)
4673getit-dev | Applying oauth2_provider.0004_auto_20160525_1623... OK (1.490s)
4674getit-dev | Applying oauth2_provider.0005_auto_20170514_1141... OK (11.329s)
4675getit-dev | Applying taggit.0001_initial... OK (0.986s)
4676getit-dev | Applying taggit.0002_auto_20150616_2121... OK (0.176s)
4677getit-dev | Running post-migrate handlers for application admin
4678getit-dev | Adding permission 'Permission object (1)'
4679getit-dev | Adding permission 'Permission object (2)'
4680getit-dev | Adding permission 'Permission object (3)'
4681getit-dev | Adding permission 'Permission object (4)'
4682getit-dev | Running post-migrate handlers for application auth
4683getit-dev | Adding permission 'Permission object (5)'
4684getit-dev | Adding permission 'Permission object (6)'
4685getit-dev | Adding permission 'Permission object (7)'
4686getit-dev | Adding permission 'Permission object (8)'
4687getit-dev | Adding permission 'Permission object (9)'
4688getit-dev | Adding permission 'Permission object (10)'
4689getit-dev | Adding permission 'Permission object (11)'
4690getit-dev | Adding permission 'Permission object (12)'
4691getit-dev | Adding permission 'Permission object (13)'
4692getit-dev | Adding permission 'Permission object (14)'
4693getit-dev | Adding permission 'Permission object (15)'
4694getit-dev | Adding permission 'Permission object (16)'
4695getit-dev | Running post-migrate handlers for application contenttypes
4696getit-dev | Adding permission 'Permission object (17)'
4697getit-dev | Adding permission 'Permission object (18)'
4698getit-dev | Adding permission 'Permission object (19)'
4699getit-dev | Adding permission 'Permission object (20)'
4700getit-dev | Running post-migrate handlers for application sessions
4701getit-dev | Adding permission 'Permission object (21)'
4702getit-dev | Adding permission 'Permission object (22)'
4703getit-dev | Adding permission 'Permission object (23)'
4704getit-dev | Adding permission 'Permission object (24)'
4705getit-dev | Running post-migrate handlers for application oauth2_provider
4706getit-dev | Adding permission 'Permission object (25)'
4707getit-dev | Adding permission 'Permission object (26)'
4708getit-dev | Adding permission 'Permission object (27)'
4709getit-dev | Adding permission 'Permission object (28)'
4710getit-dev | Adding permission 'Permission object (29)'
4711getit-dev | Adding permission 'Permission object (30)'
4712getit-dev | Adding permission 'Permission object (31)'
4713getit-dev | Adding permission 'Permission object (32)'
4714getit-dev | Adding permission 'Permission object (33)'
4715getit-dev | Adding permission 'Permission object (34)'
4716getit-dev | Adding permission 'Permission object (35)'
4717getit-dev | Adding permission 'Permission object (36)'
4718getit-dev | Adding permission 'Permission object (37)'
4719getit-dev | Adding permission 'Permission object (38)'
4720getit-dev | Adding permission 'Permission object (39)'
4721getit-dev | Adding permission 'Permission object (40)'
4722getit-dev | Running post-migrate handlers for application corsheaders
4723getit-dev | Running post-migrate handlers for application taggit
4724getit-dev | Adding permission 'Permission object (41)'
4725getit-dev | Adding permission 'Permission object (42)'
4726getit-dev | Adding permission 'Permission object (43)'
4727getit-dev | Adding permission 'Permission object (44)'
4728getit-dev | Adding permission 'Permission object (45)'
4729getit-dev | Adding permission 'Permission object (46)'
4730getit-dev | Adding permission 'Permission object (47)'
4731getit-dev | Adding permission 'Permission object (48)'
4732getit-dev | Running post-migrate handlers for application permission
4733getit-dev | Running post-migrate handlers for application categories
4734getit-dev | Adding permission 'Permission object (49)'
4735getit-dev | Adding permission 'Permission object (50)'
4736getit-dev | Adding permission 'Permission object (51)'
4737getit-dev | Adding permission 'Permission object (52)'
4738getit-dev | Adding permission 'Permission object (53)'
4739getit-dev | Adding permission 'Permission object (54)'
4740getit-dev | Adding permission 'Permission object (55)'
4741getit-dev | Adding permission 'Permission object (56)'
4742getit-dev | Running post-migrate handlers for application editor
4743getit-dev | Running post-migrate handlers for application django_filters
4744getit-dev | Running post-migrate handlers for application simple_history
4745getit-dev | Running post-migrate handlers for application identity
4746getit-dev | Adding permission 'Permission object (57)'
4747getit-dev | Adding permission 'Permission object (58)'
4748getit-dev | Adding permission 'Permission object (59)'
4749getit-dev | Adding permission 'Permission object (60)'
4750getit-dev | Adding permission 'Permission object (61)'
4751getit-dev | Adding permission 'Permission object (62)'
4752getit-dev | Adding permission 'Permission object (63)'
4753getit-dev | Adding permission 'Permission object (64)'
4754getit-dev | Running post-migrate handlers for application getit
4755getit-dev | Adding permission 'Permission object (65)'
4756getit-dev | Adding permission 'Permission object (66)'
4757getit-dev | Adding permission 'Permission object (67)'
4758getit-dev | Adding permission 'Permission object (68)'
4759getit-dev | Adding permission 'Permission object (69)'
4760getit-dev | Adding permission 'Permission object (70)'
4761getit-dev | Adding permission 'Permission object (71)'
4762getit-dev | Adding permission 'Permission object (72)'
4763getit-dev | Adding permission 'Permission object (73)'
4764getit-dev | Adding permission 'Permission object (74)'
4765getit-dev | Adding permission 'Permission object (75)'
4766getit-dev | Adding permission 'Permission object (76)'
4767getit-dev | Adding permission 'Permission object (77)'
4768getit-dev | Adding permission 'Permission object (78)'
4769getit-dev | Adding permission 'Permission object (79)'
4770getit-dev | Adding permission 'Permission object (80)'
4771getit-dev | Adding permission 'Permission object (81)'
4772getit-dev | Adding permission 'Permission object (82)'
4773getit-dev | Adding permission 'Permission object (83)'
4774getit-dev | Adding permission 'Permission object (84)'
4775getit-dev | Adding permission 'Permission object (85)'
4776getit-dev | Adding permission 'Permission object (86)'
4777getit-dev | Adding permission 'Permission object (87)'
4778getit-dev | Adding permission 'Permission object (88)'
4779getit-dev | Adding permission 'Permission object (89)'
4780getit-dev | Adding permission 'Permission object (90)'
4781getit-dev | Adding permission 'Permission object (91)'
4782getit-dev | Adding permission 'Permission object (92)'
4783getit-dev | Adding permission 'Permission object (93)'
4784getit-dev | Adding permission 'Permission object (94)'
4785getit-dev | Adding permission 'Permission object (95)'
4786getit-dev | Adding permission 'Permission object (96)'
4787getit-dev | Adding permission 'Permission object (97)'
4788getit-dev | Adding permission 'Permission object (98)'
4789getit-dev | Adding permission 'Permission object (99)'
4790getit-dev | Adding permission 'Permission object (100)'
4791getit-dev | Adding permission 'Permission object (101)'
4792getit-dev | Adding permission 'Permission object (102)'
4793getit-dev | Adding permission 'Permission object (103)'
4794getit-dev | Adding permission 'Permission object (104)'
4795getit-dev | Adding permission 'Permission object (105)'
4796getit-dev | Adding permission 'Permission object (106)'
4797getit-dev | Adding permission 'Permission object (107)'
4798getit-dev | Adding permission 'Permission object (108)'
4799getit-dev | Adding permission 'Permission object (109)'
4800getit-dev | Adding permission 'Permission object (110)'
4801getit-dev | Adding permission 'Permission object (111)'
4802getit-dev | Adding permission 'Permission object (112)'
4803getit-dev | Adding permission 'Permission object (113)'
4804getit-dev | Adding permission 'Permission object (114)'
4805getit-dev | Adding permission 'Permission object (115)'
4806getit-dev | Adding permission 'Permission object (116)'
4807getit-dev | Adding permission 'Permission object (117)'
4808getit-dev | Adding permission 'Permission object (118)'
4809getit-dev | Adding permission 'Permission object (119)'
4810getit-dev | Adding permission 'Permission object (120)'
4811getit-dev | Adding permission 'Permission object (121)'
4812getit-dev | Adding permission 'Permission object (122)'
4813getit-dev | Adding permission 'Permission object (123)'
4814getit-dev | Adding permission 'Permission object (124)'
4815getit-dev | Adding permission 'Permission object (125)'
4816getit-dev | Adding permission 'Permission object (126)'
4817getit-dev | Adding permission 'Permission object (127)'
4818getit-dev | Adding permission 'Permission object (128)'
4819getit-dev | Adding permission 'Permission object (129)'
4820getit-dev | Adding permission 'Permission object (130)'
4821getit-dev | Adding permission 'Permission object (131)'
4822getit-dev | Adding permission 'Permission object (132)'
4823getit-dev | Adding permission 'Permission object (133)'
4824getit-dev | Adding permission 'Permission object (134)'
4825getit-dev | Adding permission 'Permission object (135)'
4826getit-dev | Adding permission 'Permission object (136)'
4827getit-dev | Adding permission 'Permission object (137)'
4828getit-dev | Adding permission 'Permission object (138)'
4829getit-dev | Adding permission 'Permission object (139)'
4830getit-dev | Adding permission 'Permission object (140)'
4831getit-dev | Adding permission 'Permission object (141)'
4832getit-dev | Adding permission 'Permission object (142)'
4833getit-dev | Adding permission 'Permission object (143)'
4834getit-dev | Adding permission 'Permission object (144)'
4835getit-dev | Adding permission 'Permission object (145)'
4836getit-dev | Adding permission 'Permission object (146)'
4837getit-dev | Adding permission 'Permission object (147)'
4838getit-dev | Adding permission 'Permission object (148)'
4839getit-dev | Adding permission 'Permission object (149)'
4840getit-dev | Adding permission 'Permission object (150)'
4841getit-dev | Adding permission 'Permission object (151)'
4842getit-dev | Adding permission 'Permission object (152)'
4843getit-dev | Adding permission 'Permission object (153)'
4844getit-dev | Adding permission 'Permission object (154)'
4845getit-dev | Adding permission 'Permission object (155)'
4846getit-dev | Adding permission 'Permission object (156)'
4847getit-dev | Adding permission 'Permission object (157)'
4848getit-dev | Adding permission 'Permission object (158)'
4849getit-dev | Adding permission 'Permission object (159)'
4850getit-dev | Adding permission 'Permission object (160)'
4851getit-dev | Adding permission 'Permission object (161)'
4852getit-dev | Adding permission 'Permission object (162)'
4853getit-dev | Adding permission 'Permission object (163)'
4854getit-dev | Adding permission 'Permission object (164)'
4855getit-dev | Adding permission 'Permission object (165)'
4856getit-dev | Adding permission 'Permission object (166)'
4857getit-dev | Adding permission 'Permission object (167)'
4858getit-dev | Adding permission 'Permission object (168)'
4859getit-dev | Adding permission 'Permission object (169)'
4860getit-dev | Adding permission 'Permission object (170)'
4861getit-dev | Adding permission 'Permission object (171)'
4862getit-dev | Adding permission 'Permission object (172)'
4863getit-dev | Adding permission 'Permission object (173)'
4864getit-dev | Adding permission 'Permission object (174)'
4865getit-dev | Adding permission 'Permission object (175)'
4866getit-dev | Adding permission 'Permission object (176)'
4867getit-dev | Adding permission 'Permission object (177)'
4868getit-dev | Adding permission 'Permission object (178)'
4869getit-dev | Adding permission 'Permission object (179)'
4870getit-dev | Adding permission 'Permission object (180)'
4871getit-dev | Adding permission 'Permission object (181)'
4872getit-dev | Adding permission 'Permission object (182)'
4873getit-dev | Adding permission 'Permission object (183)'
4874getit-dev | Adding permission 'Permission object (184)'
4875getit-dev | Adding permission 'Permission object (185)'
4876getit-dev | Adding permission 'Permission object (186)'
4877getit-dev | Adding permission 'Permission object (187)'
4878getit-dev | Adding permission 'Permission object (188)'
4879getit-dev | Adding permission 'Permission object (189)'
4880getit-dev | Adding permission 'Permission object (190)'
4881getit-dev | Adding permission 'Permission object (191)'
4882getit-dev | Adding permission 'Permission object (192)'
4883getit-dev | Adding permission 'Permission object (193)'
4884getit-dev | Adding permission 'Permission object (194)'
4885getit-dev | Adding permission 'Permission object (195)'
4886getit-dev | Adding permission 'Permission object (196)'
4887getit-dev | Adding permission 'Permission object (197)'
4888getit-dev | Adding permission 'Permission object (198)'
4889getit-dev | Adding permission 'Permission object (199)'
4890getit-dev | Adding permission 'Permission object (200)'
4891getit-dev | Adding permission 'Permission object (201)'
4892getit-dev | Adding permission 'Permission object (202)'
4893getit-dev | Adding permission 'Permission object (203)'
4894getit-dev | Adding permission 'Permission object (204)'
4895getit-dev | Adding permission 'Permission object (205)'
4896getit-dev | Adding permission 'Permission object (206)'
4897getit-dev | Adding permission 'Permission object (207)'
4898getit-dev | Adding permission 'Permission object (208)'
4899getit-dev | Adding permission 'Permission object (209)'
4900getit-dev | Adding permission 'Permission object (210)'
4901getit-dev | Adding permission 'Permission object (211)'
4902getit-dev | Adding permission 'Permission object (212)'
4903getit-dev | Adding permission 'Permission object (213)'
4904getit-dev | Adding permission 'Permission object (214)'
4905getit-dev | Adding permission 'Permission object (215)'
4906getit-dev | Adding permission 'Permission object (216)'
4907getit-dev | Adding permission 'Permission object (217)'
4908getit-dev | Adding permission 'Permission object (218)'
4909getit-dev | Adding permission 'Permission object (219)'
4910getit-dev | Adding permission 'Permission object (220)'
4911getit-dev | Adding permission 'Permission object (221)'
4912getit-dev | Adding permission 'Permission object (222)'
4913getit-dev | Adding permission 'Permission object (223)'
4914getit-dev | Adding permission 'Permission object (224)'
4915getit-dev | Adding permission 'Permission object (225)'
4916getit-dev | Adding permission 'Permission object (226)'
4917getit-dev | Adding permission 'Permission object (227)'
4918getit-dev | Adding permission 'Permission object (228)'
4919getit-dev | Adding permission 'Permission object (229)'
4920getit-dev | Adding permission 'Permission object (230)'
4921getit-dev | Adding permission 'Permission object (231)'
4922getit-dev | Adding permission 'Permission object (232)'
4923getit-dev | Adding permission 'Permission object (233)'
4924getit-dev | Adding permission 'Permission object (234)'
4925getit-dev | Adding permission 'Permission object (235)'
4926getit-dev | Adding permission 'Permission object (236)'
4927getit-dev | Adding permission 'Permission object (237)'
4928getit-dev | Adding permission 'Permission object (238)'
4929getit-dev | Adding permission 'Permission object (239)'
4930getit-dev | Adding permission 'Permission object (240)'
4931getit-dev | Adding permission 'Permission object (241)'
4932getit-dev | Adding permission 'Permission object (242)'
4933getit-dev | Adding permission 'Permission object (243)'
4934getit-dev | Adding permission 'Permission object (244)'
4935getit-dev | Adding permission 'Permission object (245)'
4936getit-dev | Adding permission 'Permission object (246)'
4937getit-dev | Adding permission 'Permission object (247)'
4938getit-dev | Adding permission 'Permission object (248)'
4939getit-dev | Adding permission 'Permission object (249)'
4940getit-dev | Adding permission 'Permission object (250)'
4941getit-dev | Adding permission 'Permission object (251)'
4942getit-dev | Adding permission 'Permission object (252)'
4943getit-dev | Adding permission 'Permission object (253)'
4944getit-dev | Adding permission 'Permission object (254)'
4945getit-dev | Adding permission 'Permission object (255)'
4946getit-dev | Adding permission 'Permission object (256)'
4947getit-dev | Adding permission 'Permission object (257)'
4948getit-dev | Adding permission 'Permission object (258)'
4949getit-dev | Adding permission 'Permission object (259)'
4950getit-dev | Adding permission 'Permission object (260)'
4951getit-dev | Adding permission 'Permission object (261)'
4952getit-dev | Adding permission 'Permission object (262)'
4953getit-dev | Adding permission 'Permission object (263)'
4954getit-dev | Adding permission 'Permission object (264)'
4955getit-dev | Adding permission 'Permission object (265)'
4956getit-dev | Adding permission 'Permission object (266)'
4957getit-dev | Adding permission 'Permission object (267)'
4958getit-dev | Adding permission 'Permission object (268)'
4959getit-dev | Adding permission 'Permission object (269)'
4960getit-dev | Adding permission 'Permission object (270)'
4961getit-dev | Adding permission 'Permission object (271)'
4962getit-dev | Adding permission 'Permission object (272)'
4963getit-dev | Adding permission 'Permission object (273)'
4964getit-dev | Adding permission 'Permission object (274)'
4965getit-dev | Adding permission 'Permission object (275)'
4966getit-dev | Adding permission 'Permission object (276)'
4967getit-dev | Adding permission 'Permission object (277)'
4968getit-dev | Adding permission 'Permission object (278)'
4969getit-dev | Adding permission 'Permission object (279)'
4970getit-dev | Adding permission 'Permission object (280)'
4971getit-dev | Adding permission 'Permission object (281)'
4972getit-dev | Adding permission 'Permission object (282)'
4973getit-dev | Adding permission 'Permission object (283)'
4974getit-dev | Adding permission 'Permission object (284)'
4975getit-dev | Adding permission 'Permission object (285)'
4976getit-dev | Adding permission 'Permission object (286)'
4977getit-dev | Adding permission 'Permission object (287)'
4978getit-dev | Adding permission 'Permission object (288)'
4979getit-dev | Adding permission 'Permission object (289)'
4980getit-dev | Adding permission 'Permission object (290)'
4981getit-dev | Adding permission 'Permission object (291)'
4982getit-dev | Adding permission 'Permission object (292)'
4983getit-dev | Adding permission 'Permission object (293)'
4984getit-dev | Adding permission 'Permission object (294)'
4985getit-dev | Adding permission 'Permission object (295)'
4986getit-dev | Adding permission 'Permission object (296)'
4987getit-dev | Adding permission 'Permission object (297)'
4988getit-dev | Adding permission 'Permission object (298)'
4989getit-dev | Adding permission 'Permission object (299)'
4990getit-dev | Adding permission 'Permission object (300)'
4991getit-dev | Adding permission 'Permission object (301)'
4992getit-dev | Adding permission 'Permission object (302)'
4993getit-dev | Adding permission 'Permission object (303)'
4994getit-dev | Adding permission 'Permission object (304)'
4995getit-dev | Running post-migrate handlers for application imagekit
4996getit-dev | SETTINGS CRITICAL STARTING SERVER IN DEBUG MODE
4997getit-dev | SETTINGS INFO ALLOWED_HOSTS: ['localhost', 'server']
4998getit-dev | api: INFO [2019-12-04 03:08:39,113] [none] elasticsearch: PUT http://elasticsearch:9200/getit-tags-index [status:200 request:5.869s]
4999getit-dev | api: INFO [2019-12-04 03:08:41,002] [none] elasticsearch: PUT http://elasticsearch:9200/getit-listing-index [status:200 request:1.831s]
5000getit-dev | api: INFO [2019-12-04 03:08:43,390] [none] elasticsearch: PUT http://elasticsearch:9200/getit-forum-index [status:200 request:1.941s]
5001getit-dev | api: WARNING [2019-12-04 03:08:45,354] [none] googleapiclient.discovery_cache: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
5002getit-dev | Traceback (most recent call last):
5003getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 36, in autodetect
5004getit-dev | from google.appengine.api import memcache
5005getit-dev | ModuleNotFoundError: No module named 'google.appengine'
5006getit-dev |
5007getit-dev | During handling of the above exception, another exception occurred:
5008getit-dev |
5009getit-dev | Traceback (most recent call last):
5010getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 33, in <module>
5011getit-dev | from oauth2client.contrib.locked_file import LockedFile
5012getit-dev | ModuleNotFoundError: No module named 'oauth2client.contrib.locked_file'
5013getit-dev |
5014getit-dev | During handling of the above exception, another exception occurred:
5015getit-dev |
5016getit-dev | Traceback (most recent call last):
5017getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 37, in <module>
5018getit-dev | from oauth2client.locked_file import LockedFile
5019getit-dev | ModuleNotFoundError: No module named 'oauth2client.locked_file'
5020getit-dev |
5021getit-dev | During handling of the above exception, another exception occurred:
5022getit-dev |
5023getit-dev | Traceback (most recent call last):
5024getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 41, in autodetect
5025getit-dev | from . import file_cache
5026getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 41, in <module>
5027getit-dev | 'file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth')
5028getit-dev | ImportError: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
5029getit-dev | api: INFO [2019-12-04 03:08:45,374] [none] googleapiclient.discovery: URL being requested: GET https://jobs.googleapis.com/$discovery/rest?version=v4beta1
5030getit-dev | SETTINGS CRITICAL STARTING SERVER IN DEBUG MODE
5031getit-dev | SETTINGS INFO ALLOWED_HOSTS: ['localhost', 'server']
5032getit-dev | api: INFO [2019-12-04 03:08:55,564] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:200 request:0.088s]
5033getit-dev | api: INFO [2019-12-04 03:08:55,599] [none] elasticsearch: GET http://elasticsearch:9200/getit-tags-index/_settings [status:200 request:0.030s]
5034getit-dev | api: INFO [2019-12-04 03:08:55,674] [none] elasticsearch: PUT http://elasticsearch:9200/getit-tags-index/_mapping/doc [status:200 request:0.072s]
5035getit-dev | api: INFO [2019-12-04 03:08:55,721] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:200 request:0.008s]
5036getit-dev | api: INFO [2019-12-04 03:08:55,740] [none] elasticsearch: GET http://elasticsearch:9200/getit-listing-index/_settings [status:200 request:0.010s]
5037getit-dev | api: INFO [2019-12-04 03:08:55,885] [none] elasticsearch: PUT http://elasticsearch:9200/getit-listing-index/_mapping/doc [status:200 request:0.135s]
5038getit-dev | api: INFO [2019-12-04 03:08:56,356] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:200 request:0.014s]
5039getit-dev | api: INFO [2019-12-04 03:08:56,383] [none] elasticsearch: GET http://elasticsearch:9200/getit-forum-index/_settings [status:200 request:0.008s]
5040getit-dev | api: INFO [2019-12-04 03:08:56,447] [none] elasticsearch: PUT http://elasticsearch:9200/getit-forum-index/_mapping/doc [status:200 request:0.063s]
5041getit-dev | api: WARNING [2019-12-04 03:08:57,945] [none] googleapiclient.discovery_cache: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
5042getit-dev | Traceback (most recent call last):
5043getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 36, in autodetect
5044getit-dev | from google.appengine.api import memcache
5045getit-dev | ModuleNotFoundError: No module named 'google.appengine'
5046getit-dev |
5047getit-dev | During handling of the above exception, another exception occurred:
5048getit-dev |
5049getit-dev | Traceback (most recent call last):
5050getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 33, in <module>
5051getit-dev | from oauth2client.contrib.locked_file import LockedFile
5052getit-dev | ModuleNotFoundError: No module named 'oauth2client.contrib.locked_file'
5053getit-dev |
5054getit-dev | During handling of the above exception, another exception occurred:
5055getit-dev |
5056getit-dev | Traceback (most recent call last):
5057getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 37, in <module>
5058getit-dev | from oauth2client.locked_file import LockedFile
5059getit-dev | ModuleNotFoundError: No module named 'oauth2client.locked_file'
5060getit-dev |
5061getit-dev | During handling of the above exception, another exception occurred:
5062getit-dev |
5063getit-dev | Traceback (most recent call last):
5064getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 41, in autodetect
5065getit-dev | from . import file_cache
5066getit-dev | File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 41, in <module>
5067getit-dev | 'file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth')
5068getit-dev | ImportError: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
5069getit-dev | api: INFO [2019-12-04 03:08:57,978] [none] googleapiclient.discovery: URL being requested: GET https://jobs.googleapis.com/$discovery/rest?version=v4beta1
5070getit-dev | Performing system checks...
5071getit-dev |
5072getit-dev | System check identified no issues (0 silenced).
5073getit-dev | December 04, 2019 - 03:09:12
5074getit-dev | Django version 2.1, using settings 'api.settings'
5075getit-dev | Starting development server at http://0.0.0.0:80/
5076getit-dev | Quit the server with CONTROL-C.
5077getit-dev | api: INFO [2019-12-04 03:09:29,379] [8a0199b666244e9b9f9bcf2158ea4279] healthcheck.views: Performing healthcheck
5078getit-dev | api: INFO [2019-12-04 03:09:29,444] [8a0199b666244e9b9f9bcf2158ea4279] healthcheck.views: Healtchcheck result is ok
5079getit-dev | api: INFO [2019-12-04 03:09:29,450] [8a0199b666244e9b9f9bcf2158ea4279] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5080getit-dev | api: INFO [2019-12-04 03:09:29,499] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5081getit-dev | api: INFO [2019-12-04 03:10:00,651] [869d323ac965451ba70bf0a2e5adb051] healthcheck.views: Performing healthcheck
5082getit-dev | api: INFO [2019-12-04 03:10:00,759] [869d323ac965451ba70bf0a2e5adb051] healthcheck.views: Healtchcheck result is ok
5083getit-dev | api: INFO [2019-12-04 03:10:00,778] [869d323ac965451ba70bf0a2e5adb051] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5084getit-dev | api: INFO [2019-12-04 03:10:00,805] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5085getit-dev | api: INFO [2019-12-04 03:10:31,882] [dc70e30e3af0419ca8bb6cf90be478c0] healthcheck.views: Performing healthcheck
5086getit-dev | api: INFO [2019-12-04 03:10:31,949] [dc70e30e3af0419ca8bb6cf90be478c0] healthcheck.views: Healtchcheck result is ok
5087getit-dev | api: INFO [2019-12-04 03:10:31,963] [dc70e30e3af0419ca8bb6cf90be478c0] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5088getit-dev | api: INFO [2019-12-04 03:10:32,017] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5089getit-dev | api: INFO [2019-12-04 03:11:03,087] [fb92ec8a76ca4ffa878d9ed98b9680da] healthcheck.views: Performing healthcheck
5090getit-dev | api: INFO [2019-12-04 03:11:03,174] [fb92ec8a76ca4ffa878d9ed98b9680da] healthcheck.views: Healtchcheck result is ok
5091getit-dev | api: INFO [2019-12-04 03:11:03,180] [fb92ec8a76ca4ffa878d9ed98b9680da] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5092getit-dev | api: INFO [2019-12-04 03:11:03,192] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5093getit-dev | api: INFO [2019-12-04 03:11:34,185] [5a742e5442664b2fb364452c134f5383] healthcheck.views: Performing healthcheck
5094getit-dev | api: INFO [2019-12-04 03:11:34,300] [5a742e5442664b2fb364452c134f5383] healthcheck.views: Healtchcheck result is ok
5095getit-dev | api: INFO [2019-12-04 03:11:34,304] [5a742e5442664b2fb364452c134f5383] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5096getit-dev | api: INFO [2019-12-04 03:11:34,317] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5097getit-dev | api: INFO [2019-12-04 03:12:05,206] [911a13d5f1c54e4a9ef399cab2935bbb] healthcheck.views: Performing healthcheck
5098getit-dev | api: INFO [2019-12-04 03:12:05,307] [911a13d5f1c54e4a9ef399cab2935bbb] healthcheck.views: Healtchcheck result is ok
5099getit-dev | api: INFO [2019-12-04 03:12:05,314] [911a13d5f1c54e4a9ef399cab2935bbb] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5100getit-dev | api: INFO [2019-12-04 03:12:05,349] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5101getit-dev | api: INFO [2019-12-04 03:12:36,217] [cd97af7785cf4b87a7067f757a0b1237] healthcheck.views: Performing healthcheck
5102getit-dev | api: INFO [2019-12-04 03:12:36,290] [cd97af7785cf4b87a7067f757a0b1237] healthcheck.views: Healtchcheck result is ok
5103getit-dev | api: INFO [2019-12-04 03:12:36,305] [cd97af7785cf4b87a7067f757a0b1237] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5104getit-dev | api: INFO [2019-12-04 03:12:36,321] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5105getit-dev | api: INFO [2019-12-04 03:13:07,047] [789b2d0c052649a6b3db74b2645c03ef] healthcheck.views: Performing healthcheck
5106getit-dev | api: INFO [2019-12-04 03:13:07,110] [789b2d0c052649a6b3db74b2645c03ef] healthcheck.views: Healtchcheck result is ok
5107getit-dev | api: INFO [2019-12-04 03:13:07,114] [789b2d0c052649a6b3db74b2645c03ef] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5108getit-dev | api: INFO [2019-12-04 03:13:07,121] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5109getit-dev | api: INFO [2019-12-04 03:13:38,325] [d48e4c0ae40b402cbd68ded172429182] healthcheck.views: Performing healthcheck
5110getit-dev | api: INFO [2019-12-04 03:13:38,425] [d48e4c0ae40b402cbd68ded172429182] healthcheck.views: Healtchcheck result is ok
5111getit-dev | api: INFO [2019-12-04 03:13:38,438] [d48e4c0ae40b402cbd68ded172429182] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5112getit-dev | api: INFO [2019-12-04 03:13:38,472] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5113getit-dev | api: INFO [2019-12-04 03:14:09,693] [8d9d4d49e85c47d5b5072c93a4c3dd1c] healthcheck.views: Performing healthcheck
5114getit-dev | api: INFO [2019-12-04 03:14:09,724] [8d9d4d49e85c47d5b5072c93a4c3dd1c] healthcheck.views: Healtchcheck result is ok
5115getit-dev | api: INFO [2019-12-04 03:14:09,733] [8d9d4d49e85c47d5b5072c93a4c3dd1c] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5116getit-dev | api: INFO [2019-12-04 03:14:09,747] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5117getit-dev | api: INFO [2019-12-04 03:14:40,752] [e6c5629ed962435eb379a0bae76bc95e] healthcheck.views: Performing healthcheck
5118getit-dev | api: INFO [2019-12-04 03:14:40,918] [e6c5629ed962435eb379a0bae76bc95e] healthcheck.views: Healtchcheck result is ok
5119getit-dev | api: INFO [2019-12-04 03:14:40,937] [e6c5629ed962435eb379a0bae76bc95e] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5120getit-dev | api: INFO [2019-12-04 03:14:40,956] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5121getit-dev | api: INFO [2019-12-04 03:15:11,950] [9a039f3e6ae3420dbb242a73645c7d37] healthcheck.views: Performing healthcheck
5122getit-dev | api: INFO [2019-12-04 03:15:12,009] [9a039f3e6ae3420dbb242a73645c7d37] healthcheck.views: Healtchcheck result is ok
5123getit-dev | api: INFO [2019-12-04 03:15:12,015] [9a039f3e6ae3420dbb242a73645c7d37] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5124getit-dev | api: INFO [2019-12-04 03:15:12,020] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5125getit-dev | api: INFO [2019-12-04 03:15:42,883] [4de77ab76ea74bd79077d6bb359e853d] healthcheck.views: Performing healthcheck
5126getit-dev | api: INFO [2019-12-04 03:15:42,943] [4de77ab76ea74bd79077d6bb359e853d] healthcheck.views: Healtchcheck result is ok
5127getit-dev | api: INFO [2019-12-04 03:15:42,952] [4de77ab76ea74bd79077d6bb359e853d] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5128getit-dev | api: INFO [2019-12-04 03:15:42,990] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5129getit-dev | api: INFO [2019-12-04 03:16:15,361] [4c97efee31ce4c6da9c575b0cd03a874] healthcheck.views: Performing healthcheck
5130getit-dev | api: INFO [2019-12-04 03:16:15,841] [4c97efee31ce4c6da9c575b0cd03a874] healthcheck.views: Healtchcheck result is ok
5131getit-dev | api: INFO [2019-12-04 03:16:15,847] [4c97efee31ce4c6da9c575b0cd03a874] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5132getit-dev | api: INFO [2019-12-04 03:16:15,935] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5133getit-dev | api: INFO [2019-12-04 03:16:29,589] [a403ac7feec44ab28b3be1b2bb86fec2] log_request_id.middleware: method=GET path=/ status=404
5134getit-dev | Not Found: /
5135getit-dev | api: WARNING [2019-12-04 03:16:29,616] [none] django.request: Not Found: /
5136getit-dev | api: WARNING [2019-12-04 03:16:29,636] [none] django.server: "GET / HTTP/1.1" 404 2455
5137getit-dev | Not Found: /favicon.ico
5138getit-dev | api: WARNING [2019-12-04 03:16:30,384] [e27c9dd2469b475e9b3b03a2b6eefaad] django.request: Not Found: /favicon.ico
5139getit-dev | api: WARNING [2019-12-04 03:16:30,467] [e27c9dd2469b475e9b3b03a2b6eefaad] django.server: "GET /favicon.ico HTTP/1.1" 404 2506
5140getit-dev | api: INFO [2019-12-04 03:16:37,867] [5144e7542d194d5eaa6c8cd74381f1cd] log_request_id.middleware: method=GET path=/ status=404
5141getit-dev | Not Found: /
5142getit-dev | api: WARNING [2019-12-04 03:16:37,899] [none] django.request: Not Found: /
5143getit-dev | api: WARNING [2019-12-04 03:16:37,966] [none] django.server: "GET / HTTP/1.1" 404 2455
5144getit-dev | api: INFO [2019-12-04 03:16:47,786] [cd28b35174be4d79900bd315fbf5971f] healthcheck.views: Performing healthcheck
5145getit-dev | api: INFO [2019-12-04 03:16:47,919] [cd28b35174be4d79900bd315fbf5971f] healthcheck.views: Healtchcheck result is ok
5146getit-dev | api: INFO [2019-12-04 03:16:47,938] [cd28b35174be4d79900bd315fbf5971f] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5147getit-dev | api: INFO [2019-12-04 03:16:47,961] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5148getit-dev | api: INFO [2019-12-04 03:16:51,778] [1388723481cb4f23a466057b6d754411] log_request_id.middleware: method=GET path=/swagger status=301
5149getit-dev | api: INFO [2019-12-04 03:16:51,793] [none] django.server: "GET /swagger HTTP/1.1" 301 0
5150getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.location.StateList'> is not compatible with schema generation
5151getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5152getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.notifications.NotificationSubscriptionListCreate'> is not compatible with schema generation
5153getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5154getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.photo.PhotoDetails'> is not compatible with schema generation
5155getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5156getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.forum.ForumThreadRetrieveBySlug'> is not compatible with schema generation
5157getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5158getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.user_profile.CurrentUserProfile'> is not compatible with schema generation
5159getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5160getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.money.CurrentUserFinances'> is not compatible with schema generation
5161getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5162getit-dev | /usr/local/lib/python3.6/site-packages/django_filters/rest_framework/backends.py:128: UserWarning: <class 'getit.views.money.CurrentUserAccountTransactions'> is not compatible with schema generation
5163getit-dev | "{} is not compatible with schema generation".format(view.__class__)
5164getit-dev | api: INFO [2019-12-04 03:16:52,453] [1b40274e8b2f43d99ec0df651997fe3e] log_request_id.middleware: method=GET path=/swagger/ status=200
5165getit-dev | api: INFO [2019-12-04 03:16:52,473] [none] django.server: "GET /swagger/ HTTP/1.1" 200 4007
5166getit-dev | api: INFO [2019-12-04 03:16:52,713] [none] django.server: "GET /static/rest_framework_swagger/css/typography.css HTTP/1.1" 200 452
5167getit-dev | api: INFO [2019-12-04 03:16:52,852] [none] django.server: "GET /static/rest_framework_swagger/css/screen.css HTTP/1.1" 200 48986
5168getit-dev | api: INFO [2019-12-04 03:16:52,999] [none] django.server: "GET /static/rest_framework_swagger/css/reset.css HTTP/1.1" 200 1066
5169getit-dev | api: INFO [2019-12-04 03:16:53,013] [none] django.server: "GET /static/rest_framework_swagger/css/print.css HTTP/1.1" 200 46473
5170getit-dev | api: INFO [2019-12-04 03:16:53,121] [none] django.server: "GET /static/rest_framework_swagger/lib/lodash.min.js HTTP/1.1" 200 52646
5171getit-dev | api: INFO [2019-12-04 03:16:53,203] [none] django.server: "GET /static/rest_framework_swagger/lib/handlebars-2.0.0.js HTTP/1.1" 200 48517
5172getit-dev | api: INFO [2019-12-04 03:16:53,262] [none] django.server: "GET /static/rest_framework_swagger/lib/jquery.wiggle.min.js HTTP/1.1" 200 762
5173getit-dev | api: INFO [2019-12-04 03:16:53,332] [none] django.server: "GET /static/rest_framework_swagger/lib/object-assign-pollyfill.js HTTP/1.1" 200 692
5174getit-dev | api: INFO [2019-12-04 03:16:53,337] [none] django.server: "GET /static/rest_framework_swagger/lib/jquery-1.8.0.min.js HTTP/1.1" 200 92555
5175getit-dev | api: INFO [2019-12-04 03:16:53,455] [none] django.server: "GET /static/rest_framework_swagger/lib/marked.js HTTP/1.1" 200 28156
5176getit-dev | api: INFO [2019-12-04 03:16:53,510] [none] django.server: "GET /static/rest_framework_swagger/lib/backbone-min.js HTTP/1.1" 200 20390
5177getit-dev | api: INFO [2019-12-04 03:16:53,580] [none] django.server: "GET /static/rest_framework_swagger/lib/highlight.9.1.0.pack.js HTTP/1.1" 200 11037
5178getit-dev | api: INFO [2019-12-04 03:16:53,602] [none] django.server: "GET /static/rest_framework_swagger/lib/jquery.ba-bbq.min.js HTTP/1.1" 200 4119
5179getit-dev | api: INFO [2019-12-04 03:16:53,661] [none] django.server: "GET /static/rest_framework_swagger/lib/swagger-oauth.js HTTP/1.1" 200 11615
5180getit-dev | api: INFO [2019-12-04 03:16:53,829] [none] django.server: "GET /static/rest_framework_swagger/images/logo_small.png HTTP/1.1" 200 770
5181getit-dev | api: INFO [2019-12-04 03:16:53,869] [none] django.server: "GET /static/rest_framework_swagger/init.js HTTP/1.1" 200 1434
5182getit-dev | api: INFO [2019-12-04 03:16:53,891] [none] django.server: "GET /static/rest_framework_swagger/lib/highlight.9.1.0.pack_extended.js HTTP/1.1" 200 1025
5183getit-dev | api: INFO [2019-12-04 03:16:53,966] [none] django.server: "GET /static/rest_framework_swagger/lib/jquery.slideto.min.js HTTP/1.1" 200 369
5184getit-dev | api: INFO [2019-12-04 03:16:54,019] [none] django.server: "GET /static/rest_framework_swagger/lib/js-yaml.min.js HTTP/1.1" 200 43621
5185getit-dev | api: INFO [2019-12-04 03:16:54,023] [none] django.server: "GET /static/rest_framework_swagger/lib/jsoneditor.min.js HTTP/1.1" 200 130042
5186getit-dev | api: INFO [2019-12-04 03:16:54,093] [none] django.server: "GET /static/rest_framework_swagger/swagger-ui.min.js HTTP/1.1" 200 289384
5187getit-dev | api: INFO [2019-12-04 03:16:54,728] [none] django.server: "GET /static/rest_framework_swagger/images/favicon-16x16.png HTTP/1.1" 200 645
5188getit-dev | api: INFO [2019-12-04 03:16:54,759] [none] django.server: "GET /static/rest_framework_swagger/images/favicon-32x32.png HTTP/1.1" 200 1654
5189getit-dev | api: INFO [2019-12-04 03:16:55,230] [5a6639da35f94324a680f37afdff3e3c] log_request_id.middleware: method=GET path=/swagger/ status=200
5190getit-dev | api: INFO [2019-12-04 03:16:55,241] [none] django.server: "GET /swagger/?format=openapi HTTP/1.1" 200 42065
5191getit-dev | api: INFO [2019-12-04 03:17:19,545] [9e367b8b1ca34a7fa40a9314513fc1bf] healthcheck.views: Performing healthcheck
5192getit-dev | api: INFO [2019-12-04 03:17:19,651] [9e367b8b1ca34a7fa40a9314513fc1bf] healthcheck.views: Healtchcheck result is ok
5193getit-dev | api: INFO [2019-12-04 03:17:19,658] [9e367b8b1ca34a7fa40a9314513fc1bf] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5194getit-dev | api: INFO [2019-12-04 03:17:19,713] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5195getit-dev | api: INFO [2019-12-04 03:17:50,510] [cd305896f624442f8ff48a3f3fc88742] healthcheck.views: Performing healthcheck
5196getit-dev | api: INFO [2019-12-04 03:17:50,566] [cd305896f624442f8ff48a3f3fc88742] healthcheck.views: Healtchcheck result is ok
5197getit-dev | api: INFO [2019-12-04 03:17:50,595] [cd305896f624442f8ff48a3f3fc88742] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5198getit-dev | api: INFO [2019-12-04 03:17:50,649] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5199getit-dev | api: INFO [2019-12-04 03:18:21,660] [c676dc6d27a844708666a5641c893a70] healthcheck.views: Performing healthcheck
5200getit-dev | api: INFO [2019-12-04 03:18:21,739] [c676dc6d27a844708666a5641c893a70] healthcheck.views: Healtchcheck result is ok
5201getit-dev | api: INFO [2019-12-04 03:18:21,753] [c676dc6d27a844708666a5641c893a70] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5202getit-dev | api: INFO [2019-12-04 03:18:21,763] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5203getit-dev | api: INFO [2019-12-04 03:18:52,812] [3d7fe89fe2684510ac620eed0739a6f3] healthcheck.views: Performing healthcheck
5204getit-dev | api: INFO [2019-12-04 03:18:52,876] [3d7fe89fe2684510ac620eed0739a6f3] healthcheck.views: Healtchcheck result is ok
5205getit-dev | api: INFO [2019-12-04 03:18:52,935] [3d7fe89fe2684510ac620eed0739a6f3] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5206getit-dev | api: INFO [2019-12-04 03:18:52,943] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5207getit-dev | api: INFO [2019-12-04 03:19:23,820] [8e1d56ffd88242f39c128959ce41e6c9] healthcheck.views: Performing healthcheck
5208getit-dev | api: INFO [2019-12-04 03:19:23,874] [8e1d56ffd88242f39c128959ce41e6c9] healthcheck.views: Healtchcheck result is ok
5209getit-dev | api: INFO [2019-12-04 03:19:23,892] [8e1d56ffd88242f39c128959ce41e6c9] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5210getit-dev | api: INFO [2019-12-04 03:19:23,940] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5211getit-dev | api: INFO [2019-12-04 03:19:55,145] [84ca13228cf4451597b272e8d0849dc6] healthcheck.views: Performing healthcheck
5212getit-dev | api: INFO [2019-12-04 03:19:55,205] [84ca13228cf4451597b272e8d0849dc6] healthcheck.views: Healtchcheck result is ok
5213getit-dev | api: INFO [2019-12-04 03:19:55,235] [84ca13228cf4451597b272e8d0849dc6] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5214getit-dev | api: INFO [2019-12-04 03:19:55,305] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5215getit-dev | api: INFO [2019-12-04 03:20:26,209] [f95f275207b6492086439dc89f8e3555] healthcheck.views: Performing healthcheck
5216getit-dev | api: INFO [2019-12-04 03:20:26,242] [f95f275207b6492086439dc89f8e3555] healthcheck.views: Healtchcheck result is ok
5217getit-dev | api: INFO [2019-12-04 03:20:26,249] [f95f275207b6492086439dc89f8e3555] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5218getit-dev | api: INFO [2019-12-04 03:20:26,252] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5219getit-dev | api: INFO [2019-12-04 03:20:57,612] [2e6fd9889f2a492882475c0436b7c5d8] healthcheck.views: Performing healthcheck
5220getit-dev | api: INFO [2019-12-04 03:20:57,678] [2e6fd9889f2a492882475c0436b7c5d8] healthcheck.views: Healtchcheck result is ok
5221getit-dev | api: INFO [2019-12-04 03:20:57,687] [2e6fd9889f2a492882475c0436b7c5d8] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5222getit-dev | api: INFO [2019-12-04 03:20:57,723] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5223getit-dev | api: INFO [2019-12-04 03:21:29,008] [e8210996e5a44c9885769e92b8791783] healthcheck.views: Performing healthcheck
5224getit-dev | api: INFO [2019-12-04 03:21:29,094] [e8210996e5a44c9885769e92b8791783] healthcheck.views: Healtchcheck result is ok
5225getit-dev | api: INFO [2019-12-04 03:21:29,108] [e8210996e5a44c9885769e92b8791783] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5226getit-dev | api: INFO [2019-12-04 03:21:29,128] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5227getit-dev | api: INFO [2019-12-04 03:22:00,155] [20e1dd470f1a4ba09114e71f74c6f896] healthcheck.views: Performing healthcheck
5228getit-dev | api: INFO [2019-12-04 03:22:00,207] [20e1dd470f1a4ba09114e71f74c6f896] healthcheck.views: Healtchcheck result is ok
5229getit-dev | api: INFO [2019-12-04 03:22:00,289] [20e1dd470f1a4ba09114e71f74c6f896] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5230getit-dev | api: INFO [2019-12-04 03:22:00,323] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5231getit-dev | api: INFO [2019-12-04 03:22:31,193] [2ca34bd6d3cc4fde9a01021c107d0b5c] healthcheck.views: Performing healthcheck
5232getit-dev | api: INFO [2019-12-04 03:22:31,264] [2ca34bd6d3cc4fde9a01021c107d0b5c] healthcheck.views: Healtchcheck result is ok
5233getit-dev | api: INFO [2019-12-04 03:22:31,269] [2ca34bd6d3cc4fde9a01021c107d0b5c] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5234getit-dev | api: INFO [2019-12-04 03:22:31,273] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
5235getit-dev | api: INFO [2019-12-04 03:23:02,421] [067f4bca399b45adb5cb05c86be6232a] healthcheck.views: Performing healthcheck
5236getit-dev | api: INFO [2019-12-04 03:23:02,463] [067f4bca399b45adb5cb05c86be6232a] healthcheck.views: Healtchcheck result is ok
5237getit-dev | api: INFO [2019-12-04 03:23:02,472] [067f4bca399b45adb5cb05c86be6232a] log_request_id.middleware: method=GET path=/healthcheck/ status=200
5238getit-dev | api: INFO [2019-12-04 03:23:02,491] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40