Advertisement
Guest User

initial setup

a guest
Dec 3rd, 2019
7,135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 371.36 KB | None | 0 0
  1. Last login: Tue Dec  3 07:14:01 on ttys006
  2. luccas@Luccass-Mac ~ % python
  3.  
  4. WARNING: Python 2.7 is not recommended.
  5. This version is included in macOS for compatibility with legacy software.
  6. Future versions of macOS will not include Python 2.7.
  7. Instead, it is recommended that you transition to using 'python3' from within Terminal.
  8.  
  9. Python 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
  11. Type "help", "copyright", "credits" or "license" for more information.
  12. >>> exit()
  13. luccas@Luccass-Mac ~ % docker -v
  14. Docker version 19.03.5, build 633a0ea
  15. luccas@Luccass-Mac ~ % docker-compose -v
  16. docker-compose version 1.24.1, build 4667896b
  17. luccas@Luccass-Mac ~ % node -v
  18. v8.16.2
  19. luccas@Luccass-Mac ~ % nvm -v
  20.  
  21. Node Version Manager (v0.35.1)
  22.  
  23. Note: <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.  
  30. Usage:
  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.  
  76. Example:
  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.  
  84. Note:
  85.   to remove, delete, or uninstall nvm - just remove the `$NVM_DIR` folder (usually `~/.nvm`)
  86.  
  87. luccas@Luccass-Mac ~ % git -v
  88. unknown option: -v
  89. usage: 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>]
  94. luccas@Luccass-Mac ~ % go -v
  95. flag provided but not defined: -v
  96. Go is a tool for managing Go source code.
  97.  
  98. Usage:
  99.  
  100.     go <command> [arguments]
  101.  
  102. The 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.  
  122. Use "go help <command>" for more information about a command.
  123.  
  124. Additional 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.  
  144. Use "go help <topic>" for more information about that topic.
  145.  
  146. luccas@Luccass-Mac ~ %
  147. luccas@Luccass-Mac ~ % make -v
  148. GNU Make 3.81
  149. Copyright (C) 2006  Free Software Foundation, Inc.
  150. This is free software; see the source for copying conditions.
  151. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
  152. PARTICULAR PURPOSE.
  153.  
  154. This program built for i386-apple-darwin11.3.0
  155. luccas@Luccass-Mac ~ % go get golang.org/x/tools/cmd/goimports
  156. luccas@Luccass-Mac ~ % goimports
  157. zsh: command not found: goimports
  158. luccas@Luccass-Mac ~ % vim .bash_profile
  159. luccas@Luccass-Mac ~ % goimports
  160. zsh: command not found: goimports
  161. luccas@Luccass-Mac ~ % gofmt    
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170. ^C
  171. luccas@Luccass-Mac ~ % gofmt -v
  172. flag provided but not defined: -v
  173. usage: 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
  183. luccas@Luccass-Mac ~ % cd Desktop/getit
  184. luccas@Luccass-Mac getit % ls
  185. Dockerfile      deps            likes.js
  186. README.md       docker          messages
  187. adapult         docker-compose.yaml requirements.txt
  188. bitbucket-pipelines.yml environment.env     scripts
  189. ci          environment.env.example search-alerts
  190. click-service       internal-cbs        src
  191. client          k8s         vendor
  192. luccas@Luccass-Mac getit % vim environment.env
  193. luccas@Luccass-Mac getit % code
  194. zsh: command not found: code
  195. luccas@Luccass-Mac getit % pip -v
  196. zsh: command not found: pip
  197. luccas@Luccass-Mac getit % sudo easy_install pip
  198. Password:
  199. Searching for pip
  200. Reading https://pypi.org/simple/pip/
  201. Downloading https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl#sha256=6917c65fc3769ecdc61405d3dfd97afdedd75808d200b2838d7d961cebc0c2c7
  202. Best match: pip 19.3.1
  203. Processing pip-19.3.1-py2.py3-none-any.whl
  204. Installing pip-19.3.1-py2.py3-none-any.whl to /Library/Python/2.7/site-packages
  205. Adding pip 19.3.1 to easy-install.pth file
  206. Installing pip script to /usr/local/bin
  207. Installing pip3.7 script to /usr/local/bin
  208. Installing pip3 script to /usr/local/bin
  209.  
  210. Installed /Library/Python/2.7/site-packages/pip-19.3.1-py2.7.egg
  211. Processing dependencies for pip
  212. Finished processing dependencies for pip
  213. luccas@Luccass-Mac getit % sudo pip install --upgrade pip
  214. DEPRECATION: 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
  215. WARNING: 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.
  216. WARNING: 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.
  217. Requirement already up-to-date: pip in /Library/Python/2.7/site-packages/pip-19.3.1-py2.7.egg (19.3.1)
  218. luccas@Luccass-Mac getit % pip -v
  219.  
  220. Usage:  
  221.   pip <command> [options]
  222.  
  223. Commands:
  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.  
  239. General 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
  270. luccas@Luccass-Mac getit % pip --version
  271. pip 19.3.1 from /Library/Python/2.7/site-packages/pip-19.3.1-py2.7.egg/pip (python 2.7)
  272. luccas@Luccass-Mac getit % RUN_ADAPULT_MIGRATION=true docker-compose up —build dev-server
  273. Creating network "getit_default" with the default driver
  274. Creating network "getit_esnet" with the default driver
  275. Creating volume "getit_esdata1" with local driver
  276. Creating volume "getit_esdata2" with local driver
  277. ERROR: No such service: —build
  278. luccas@Luccass-Mac getit % RUN_ADAPULT_MIGRATION=true docker-compose up --build dev-server
  279. Building log
  280. Step 1/7 : FROM alpine:3.6
  281. 3.6: Pulling from library/alpine
  282. 5a3ea8efae5d: Pull complete
  283. Digest: sha256:66790a2b79e1ea3e1dabac43990c54aca5d1ddf268d9a5a0285e4167c8b24475
  284. Status: Downloaded newer image for alpine:3.6
  285. ---> 43773d1dba76
  286. Step 2/7 : RUN apk add --update tzdata
  287. ---> Running in e0c57fa1b364
  288. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  289. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
  290. (1/1) Installing tzdata (2019a-r0)
  291. Executing busybox-1.26.2-r11.trigger
  292. OK: 7 MiB in 14 packages
  293. Removing intermediate container e0c57fa1b364
  294. ---> a277a7ad712d
  295. Step 3/7 : ENV TZ=America/New_York
  296. ---> Running in ac035c32e468
  297. Removing intermediate container ac035c32e468
  298. ---> 9685acb687f1
  299. Step 4/7 : RUN apk add --update syslog-ng
  300. ---> Running in c749c6234a4f
  301. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  302. fetch 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)
  322. Executing syslog-ng-3.9.1-r1.post-install
  323. Executing busybox-1.26.2-r11.trigger
  324. Executing glib-2.52.1-r0.trigger
  325. OK: 61 MiB in 33 packages
  326. Removing intermediate container c749c6234a4f
  327. ---> b5eb58c73254
  328. Step 5/7 : ADD ./docker/log/syslog-ng.conf /etc/syslog-ng/syslog-ng.conf
  329. ---> 817b2bcc9c5e
  330. Step 6/7 : EXPOSE 514/tcp 514/udp
  331. ---> Running in 53a6c498ae9f
  332. Removing intermediate container 53a6c498ae9f
  333. ---> 06a212b01e54
  334. Step 7/7 : ENTRYPOINT ["/usr/sbin/syslog-ng", "-F", "-f", "/etc/syslog-ng/syslog-ng.conf"]
  335. ---> Running in 8891c7e917e2
  336. Removing intermediate container 8891c7e917e2
  337. ---> cfcd44ab84ca
  338. Successfully built cfcd44ab84ca
  339. Successfully tagged getit_log:latest
  340. Pulling elasticsearch (docker.elastic.co/elasticsearch/elasticsearch:6.5.1)...
  341. 6.5.1: Pulling from elasticsearch/elasticsearch
  342. aeb7866da422: Pull complete
  343. 8ed52286043f: Pull complete
  344. 8b87f38e78e9: Pull complete
  345. a4cf659acf47: Pull complete
  346. 0385f485f7da: Pull complete
  347. e76d98016114: Pull complete
  348. 00185d9e8607: Pull complete
  349. 14f38d200567: Pull complete
  350. Digest: sha256:c598e8343af6a2734ae768b4d25f976c1de6c45d8d9f8dfa8a3c3448e5a85e86
  351. Status: Downloaded newer image for docker.elastic.co/elasticsearch/elasticsearch:6.5.1
  352. Building messages
  353. Step 1/12 : FROM golang:1.11.4-alpine3.8
  354. 1.11.4-alpine3.8: Pulling from library/golang
  355. cd784148e348: Pull complete
  356. 7e273b0dfc44: Pull complete
  357. 952c3806fd1a: Pull complete
  358. ee1f873f86f9: Pull complete
  359. 7172cd197d12: Pull complete
  360. Digest: sha256:198cb8c94b9ee6941ce6d58f29aadb855f64600918ce602cdeacb018ad77d647
  361. Status: Downloaded newer image for golang:1.11.4-alpine3.8
  362. ---> f56365ec0638
  363. Step 2/12 : ENV ELASTIC_HOST=
  364. ---> Running in 7c294e25de39
  365. Removing intermediate container 7c294e25de39
  366. ---> f8afea2bbc5f
  367. Step 3/12 : ENV ELASTIC_NAME=
  368. ---> Running in 7a15b0b47ba5
  369. Removing intermediate container 7a15b0b47ba5
  370. ---> d06a7bf6b9e3
  371. Step 4/12 : ENV ELASTIC_PASSWORD=
  372. ---> Running in c8a0f6035393
  373. Removing intermediate container c8a0f6035393
  374. ---> 22305e81c33e
  375. Step 5/12 : RUN apk add --update git libxml2 libxml2-dev
  376. ---> Running in 0366024f4e48
  377. fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
  378. fetch 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)
  389. Executing busybox-1.28.4-r2.trigger
  390. OK: 27 MiB in 24 packages
  391. Removing intermediate container 0366024f4e48
  392. ---> 5eb74b1670aa
  393. Step 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)
  409. Executing busybox-1.28.4-r2.trigger
  410. OK: 121 MiB in 36 packages
  411. Removing intermediate container 3c11bf55f9cc
  412. ---> cf0b6d17d396
  413. Step 7/12 : RUN mkdir -p /opt/code/
  414. ---> Running in 613cd54edffc
  415. Removing intermediate container 613cd54edffc
  416. ---> b290baac24c0
  417. Step 8/12 : WORKDIR /opt/code/
  418. ---> Running in 09a559333bf9
  419. Removing intermediate container 09a559333bf9
  420. ---> 65a67ebdee89
  421. Step 9/12 : ADD ./ /opt/code/
  422. ---> 82331c0eea1d
  423. Step 10/12 : RUN go build -mod=vendor -o /go/bin/messages
  424. ---> Running in b5607198a7eb
  425. Removing intermediate container b5607198a7eb
  426. ---> 932bba2f10ea
  427. Step 11/12 : ENTRYPOINT /go/bin/messages
  428. ---> Running in ea4f076c18c4
  429. Removing intermediate container ea4f076c18c4
  430. ---> a890c01e4201
  431. Step 12/12 : EXPOSE 8080
  432. ---> Running in fd77fbc8ea2f
  433. Removing intermediate container fd77fbc8ea2f
  434. ---> 75d73c7ffc3a
  435. Successfully built 75d73c7ffc3a
  436. Successfully tagged getit_messages:latest
  437. Building db
  438. Step 1/42 : FROM python:3.6.7-alpine3.6
  439. 3.6.7-alpine3.6: Pulling from library/python
  440. ab3d5dc0b96d: Pull complete
  441. 71afa6c1e317: Pull complete
  442. 2bcf07aaf18b: Pull complete
  443. 9241a3cc520e: Pull complete
  444. 4f8166d127bf: Pull complete
  445. Digest: sha256:c42394297f3984178f709248d30b8ab2ab7987db71c0729a65077606ea17d866
  446. Status: Downloaded newer image for python:3.6.7-alpine3.6
  447. ---> 8f30079779ef
  448. Step 2/42 : ARG POSTGRES_DB
  449. ---> Running in d2ede88e8863
  450. Removing intermediate container d2ede88e8863
  451. ---> 963f2e39b14e
  452. Step 3/42 : ENV POSTGRES_DB $POSTGRES_DB
  453. ---> Running in dd432efb9ea9
  454. Removing intermediate container dd432efb9ea9
  455. ---> 37657226cb56
  456. Step 4/42 : ARG POSTGRES_USER
  457. ---> Running in 4c63ad60ccbe
  458. Removing intermediate container 4c63ad60ccbe
  459. ---> 28a1c8af05fa
  460. Step 5/42 : ENV POSTGRES_USER $POSTGRES_USER
  461. ---> Running in 12f493c3bd45
  462. Removing intermediate container 12f493c3bd45
  463. ---> 35027e6315d9
  464. Step 6/42 : ARG POSTGRES_PASSWORD
  465. ---> Running in 986ff90a144b
  466. Removing intermediate container 986ff90a144b
  467. ---> 261bd94e6e73
  468. Step 7/42 : ENV POSTGRES_PASSWORD $POSTGRES_PASSWORD
  469. ---> Running in 026d5b372ae9
  470. Removing intermediate container 026d5b372ae9
  471. ---> 9b8e7f8331e2
  472. Step 8/42 : ARG POSTGRES_PORT
  473. ---> Running in 313bd782f591
  474. Removing intermediate container 313bd782f591
  475. ---> 2c37cef53db9
  476. Step 9/42 : ARG django_secret_key
  477. ---> Running in 3ccbe2bf09cd
  478. Removing intermediate container 3ccbe2bf09cd
  479. ---> c4ad813a1ca4
  480. Step 10/42 : ENV DJANGO_SECRET_KEY $django_secret_key
  481. ---> Running in 0bba3c656b65
  482. Removing intermediate container 0bba3c656b65
  483. ---> 186807f53929
  484. Step 11/42 : ENV POSTGRES_HOST localhost
  485. ---> Running in 2f4e21195036
  486. Removing intermediate container 2f4e21195036
  487. ---> 3a10a7b08ddb
  488. Step 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
  490. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  491. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
  492. (1/23) Installing bash (4.3.48-r1)
  493. Executing 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)
  516. Executing busybox-1.26.2-r11.trigger
  517. OK: 84 MiB in 48 packages
  518. Removing intermediate container a745375dbf1d
  519. ---> ff5b92d872ce
  520. Step 13/42 : RUN apk add --update build-base py-pip jpeg-dev zlib-dev
  521. ---> Running in 53e38aed4d50
  522. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  523. fetch 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)
  550. Executing busybox-1.26.2-r11.trigger
  551. OK: 291 MiB in 72 packages
  552. Removing intermediate container 53e38aed4d50
  553. ---> 2bbde0bb3a36
  554. Step 14/42 : ENV LIBRARY_PATH=/lib:/usr/lib
  555. ---> Running in 41bd7e79d178
  556. Removing intermediate container 41bd7e79d178
  557. ---> dbf44f00cf00
  558. Step 15/42 : ENV LANG en_US.utf8
  559. ---> Running in e267301649f0
  560. Removing intermediate container e267301649f0
  561. ---> 03cb95ae4884
  562. Step 16/42 : ENV PGDATA /var/lib/postgresql/data
  563. ---> Running in b17b4bbd37b1
  564. Removing intermediate container b17b4bbd37b1
  565. ---> 21e2b35c3cb9
  566. Step 17/42 : EXPOSE $POSTGRES_PORT
  567. ---> Running in 62db16f1f89f
  568. Removing intermediate container 62db16f1f89f
  569. ---> 187304e5ece1
  570. Step 18/42 : VOLUME /var/lib/postgresql/data
  571. ---> Running in 9121b3f61b9a
  572. Removing intermediate container 9121b3f61b9a
  573. ---> c8c4b2f3ada1
  574. Step 19/42 : RUN apk add --update tzdata
  575. ---> Running in 3fb8587c8cad
  576. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  577. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
  578. (1/1) Installing tzdata (2019a-r0)
  579. Executing busybox-1.26.2-r11.trigger
  580. OK: 294 MiB in 73 packages
  581. Removing intermediate container 3fb8587c8cad
  582. ---> a42ea3813a42
  583. Step 20/42 : ENV TZ=America/New_York
  584. ---> Running in ace227b419e0
  585. Removing intermediate container ace227b419e0
  586. ---> 4d2bf21dc1c4
  587. Step 21/42 : RUN mkdir -p /opt/code
  588. ---> Running in 9b9506e807b7
  589. Removing intermediate container 9b9506e807b7
  590. ---> f6c2b320a430
  591. Step 22/42 : RUN mkdir -p /opt/data
  592. ---> Running in 2e224afecbf5
  593. Removing intermediate container 2e224afecbf5
  594. ---> 18cd29e70aca
  595. Step 23/42 : ENV PGDATA /opt/data
  596. ---> Running in c0b211efe8f8
  597. Removing intermediate container c0b211efe8f8
  598. ---> fd02f15dab8d
  599. Step 24/42 : WORKDIR /opt/code
  600. ---> Running in ec24adb2c9ef
  601. Removing intermediate container ec24adb2c9ef
  602. ---> 45f8ba74e7f9
  603. Step 25/42 : RUN pip3 install --upgrade setuptools
  604. ---> Running in 5dbe87b6f5d8
  605. Collecting setuptools
  606.  Downloading https://files.pythonhosted.org/packages/54/28/c45d8b54c1339f9644b87663945e54a8503cfef59cf0f65b3ff5dd17cf64/setuptools-42.0.2-py2.py3-none-any.whl (583kB)
  607. Installing collected packages: setuptools
  608.  Found existing installation: setuptools 40.6.3
  609.    Uninstalling setuptools-40.6.3:
  610.      Successfully uninstalled setuptools-40.6.3
  611. Successfully installed setuptools-42.0.2
  612. You are using pip version 18.1, however version 19.3.1 is available.
  613. You should consider upgrading via the 'pip install --upgrade pip' command.
  614. Removing intermediate container 5dbe87b6f5d8
  615. ---> 3984572d8d0c
  616. Step 26/42 : RUN pip3 install --upgrade pip
  617. ---> Running in e7fbfe2e0930
  618. Collecting pip
  619.  Downloading https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl (1.4MB)
  620. Installing collected packages: pip
  621.  Found existing installation: pip 18.1
  622.    Uninstalling pip-18.1:
  623.      Successfully uninstalled pip-18.1
  624. Successfully installed pip-19.3.1
  625. Removing intermediate container e7fbfe2e0930
  626. ---> 474e397460ce
  627. Step 27/42 : RUN mkdir -p /opt/code/db
  628. ---> Running in 867727c7eb76
  629. Removing intermediate container 867727c7eb76
  630. ---> 1b3699535d7c
  631. Step 28/42 : WORKDIR /opt/code/db
  632. ---> Running in b7230dfc66ad
  633. Removing intermediate container b7230dfc66ad
  634. ---> 1640dc768c27
  635. Step 29/42 : ADD ./docker/db/postgres-setup.sh /opt/code/db/
  636. ---> 38733459f169
  637. Step 30/42 : RUN ./postgres-setup.sh
  638. ---> Running in 007b545aff5d
  639. The files belonging to this database system will be owned by user "postgres".
  640. This user must also own the server process.
  641.  
  642. The database cluster will be initialized with locale "en_US.utf8".
  643. The default database encoding has accordingly been set to "UTF8".
  644. The default text search configuration will be set to "english".
  645.  
  646. Data page checksums are disabled.
  647.  
  648. fixing permissions on existing directory /opt/data ... ok
  649. creating subdirectories ... ok
  650. selecting default max_connections ... 100
  651. selecting default shared_buffers ... 128MB
  652. selecting dynamic shared memory implementation ... posix
  653. creating configuration files ... ok
  654. running bootstrap script ... ok
  655. performing post-bootstrap initialization ... No usable system locales were found.
  656. Use the option "--debug" to see details.
  657. sh: locale: not found
  658. ok
  659. syncing data to disk ...
  660. WARNING: enabling "trust" authentication for local connections
  661. You 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.
  663. ok
  664.  
  665. Success.
  666.  
  667.  
  668. Creating database apidb
  669.  
  670. PostgreSQL stand-alone backend 9.6.13
  671. backend> statement: CREATE DATABASE apidb;
  672.  
  673. backend>
  674.  
  675. PostgreSQL stand-alone backend 9.6.13
  676. backend> statement: ALTER USER postgres WITH SUPERUSER PASSWORD 'somepassword';
  677.  
  678. backend>
  679. Removing intermediate container 007b545aff5d
  680. ---> 8c45fe0779a5
  681. Step 31/42 : WORKDIR /opt/code
  682. ---> Running in 54402bed061e
  683. Removing intermediate container 54402bed061e
  684. ---> fc2e45534563
  685. Step 32/42 : ADD requirements.txt /opt/code
  686. ---> ec643e5db6f9
  687. Step 33/42 : RUN pip3 install --upgrade setuptools
  688. ---> Running in d341a84ed2a6
  689. Requirement already up-to-date: setuptools in /usr/local/lib/python3.6/site-packages (42.0.2)
  690. Removing intermediate container d341a84ed2a6
  691. ---> e041b50f7e45
  692. Step 34/42 : RUN pip3 install --upgrade pip
  693. ---> Running in 6ba14e992872
  694. Requirement already up-to-date: pip in /usr/local/lib/python3.6/site-packages (19.3.1)
  695. Removing intermediate container 6ba14e992872
  696. ---> f7496e3b1072
  697. Step 35/42 : ADD ./vendor /opt/vendor
  698. ---> 37fcd9bb4b8e
  699. Step 36/42 : ADD ./deps /opt/deps
  700. ---> 26555f0f8690
  701. Step 37/42 : RUN if ls /opt/vendor/*.whl 1> /dev/null 2>&1; then pip3 install /opt/vendor/*.whl; fi
  702. ---> Running in cbde5555a150
  703. Removing intermediate container cbde5555a150
  704. ---> ffa10110bb64
  705. Step 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
  707. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  708. fetch 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)
  711. OK: 300 MiB in 75 packages
  712. Collecting 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
  716. Collecting bleach==2.1.2
  717.  Downloading https://files.pythonhosted.org/packages/07/59/06f368f350cd7f226606c2bc7210c6b336312df62185de333c66d6180512/bleach-2.1.2-py2.py3-none-any.whl
  718. Collecting coverage==4.5.1
  719.  Downloading https://files.pythonhosted.org/packages/35/fe/e7df7289d717426093c68d156e0fd9117c8f4872b6588e8a8928a0f68424/coverage-4.5.1.tar.gz (379kB)
  720. Collecting Django==2.1
  721.  Downloading https://files.pythonhosted.org/packages/51/1a/e0ac7886c7123a03814178d7517dc822af0fe51a72e1a6bff26153103322/Django-2.1-py3-none-any.whl (7.3MB)
  722. Collecting 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)
  724. Collecting 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
  726. Collecting 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)
  728. Collecting 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
  730. Collecting 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
  732. Collecting 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)
  734. Collecting 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
  736. Collecting 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)
  738. Collecting 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)
  740. Collecting django-rest-elasticsearch==0.4.1
  741.  Downloading https://files.pythonhosted.org/packages/f6/28/9b1039bfaeb8aa489d15d9118e51a6a3708f052c004c8a60b9f3fd3f88b8/django-rest-elasticsearch-0.4.1.tar.gz
  742. Collecting 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)
  744. Obtaining 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
  747. Collecting 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
  749. Collecting 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)
  751. Collecting 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)
  753. Collecting django-taggit-serializer==0.1.7
  754.  Downloading https://files.pythonhosted.org/packages/68/c4/9737e1df18ca8af0f40f46a54af08a15d75eb7afd7805ba94c87fc042ae3/django-taggit-serializer-0.1.7.tar.gz
  755. Collecting djangorestframework==3.9.0
  756.  Downloading https://files.pythonhosted.org/packages/99/0b/d37a5a96c5d301e23adcabcc2f3fa659fb34e6308590f95ebb50cdbe98a1/djangorestframework-3.9.0-py2.py3-none-any.whl (924kB)
  757. Collecting 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)
  759. Collecting facebook-sdk==3.0.0
  760.  Downloading https://files.pythonhosted.org/packages/64/80/a4bdc341dbd283ce4bf23445b9b3f36e21ba9fe2f130435e0892675704c4/facebook_sdk-3.0.0-py3-none-any.whl
  761. Collecting 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)
  763. Collecting 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)
  765. Collecting 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)
  767. Collecting oauth2client==4.1.3
  768.  Downloading https://files.pythonhosted.org/packages/95/a9/4f25a14d23f0786b64875b91784607c2277eff25d48f915e39ff0cff505a/oauth2client-4.1.3-py2.py3-none-any.whl (98kB)
  769. Collecting Pillow==4.3.0
  770.  Downloading https://files.pythonhosted.org/packages/e0/82/ec499c78bfe4ecaa91c2f3000040451d187ed0a816d58b8543e29c48827f/Pillow-4.3.0.tar.gz (13.9MB)
  771. Collecting psycopg2==2.7.3
  772.  Downloading https://files.pythonhosted.org/packages/98/99/33ca02c4bc3ed1bd9ceab5614bda2e6d1d31e61ec58345b9feece238c38a/psycopg2-2.7.3.tar.gz (425kB)
  773. Collecting pycryptodome==3.8.2
  774.  Downloading https://files.pythonhosted.org/packages/e2/7b/12f76a8bd427ebc54f24a0df6fd776fda48087d6a9a32ae0dbc3341dac3f/pycryptodome-3.8.2.tar.gz (12.4MB)
  775. Collecting 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
  777. Collecting 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
  779. Collecting pyyaml==3.12
  780.  Downloading https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz (253kB)
  781. Collecting rollbar==0.14.1
  782.  Downloading https://files.pythonhosted.org/packages/88/bd/aa1e91f4d5e706a7aaf771d028ccdc100ac95c9fe286c102d9795f6ff409/rollbar-0.14.1.tar.gz (59kB)
  783. Collecting sendgrid-django==4.2.0
  784.  Downloading https://files.pythonhosted.org/packages/f5/94/4749ff4acae2c2ca89c5acdf8449494ef4fbc4254a705866f07c6774ea8b/sendgrid-django-4.2.0.tar.gz
  785. Collecting smtpapi==0.3.1
  786.  Downloading https://files.pythonhosted.org/packages/21/de/380fd07226fb481bfb12f0b8e581363bede5801f7aad53d029fd0e38be62/smtpapi-0.3.1.tar.gz
  787. Collecting stripe==2.35.0
  788.  Downloading https://files.pythonhosted.org/packages/66/d0/9347c19912b18c92af558a5eb3ea93db90bf1a1472d3c31282517d996695/stripe-2.35.0-py2.py3-none-any.whl (198kB)
  789. Collecting 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
  791. Collecting uwsgi==2.0.17.1
  792.  Downloading https://files.pythonhosted.org/packages/a2/c9/a2d5737f63cd9df4317a4acc15d1ddf4952e28398601d8d7d706c16381e0/uwsgi-2.0.17.1.tar.gz (800kB)
  793. Collecting 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)
  795. Collecting 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)
  797. Collecting grpcio==1.24.0
  798.  Downloading https://files.pythonhosted.org/packages/5d/44/26b8e581a12837cc44a82fcdef6edcaa8b220d4f6ded1e3267f9ce126f48/grpcio-1.24.0.tar.gz (14.1MB)
  799. Collecting filestack-python==3.0.1
  800.  Downloading https://files.pythonhosted.org/packages/63/df/d06fd4b3761b59fa4a3876529e1824ffdb1481136285b1141255640a761f/filestack_python-3.0.1-py3-none-any.whl
  801. Collecting six
  802.  Downloading https://files.pythonhosted.org/packages/65/26/32b8464df2a97e6dd1b656ed26b2c194606c16fe163c695a992b36c11cdf/six-1.13.0-py2.py3-none-any.whl
  803. Collecting 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)
  805. Collecting pytz
  806.  Downloading https://files.pythonhosted.org/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl (509kB)
  807. Collecting unicode-slugify==0.1.3
  808.  Downloading https://files.pythonhosted.org/packages/8c/ba/1a05f61c7fd72df85ae4dc1c7967a3e5a4b6c61f016e794bc7f09b2597c0/unicode-slugify-0.1.3.tar.gz
  809. Collecting 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)
  811. Collecting django-appconf
  812.  Downloading https://files.pythonhosted.org/packages/f6/b3/fcec63afcf323581c4919f21e90ef8c8200034108a6a0ab47a6bf6a9327b/django_appconf-1.0.3-py2.py3-none-any.whl
  813. Collecting pilkit>=0.2.0
  814.  Downloading https://files.pythonhosted.org/packages/c4/5c/318d9c20f309e6a79ea4d4605f86597d05f3e007d3d1925ff02474808659/pilkit-2.0.tar.gz (161kB)
  815. Collecting oauthlib>=2.0.1
  816.  Downloading https://files.pythonhosted.org/packages/05/57/ce2e7a8fa7c0afb54a0581b14a65b56e62b5759dbc98e80627142b8a3704/oauthlib-3.1.0-py2.py3-none-any.whl (147kB)
  817. Collecting requests>=2.13.0
  818.  Downloading https://files.pythonhosted.org/packages/51/bd/23c926cd341ea6b7dd0b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl (57kB)
  819. Collecting app-version
  820.  Downloading https://files.pythonhosted.org/packages/a7/03/5eeff1025f889d8d85738078c4f48e806aafe27c93ed1a52f3fbec029b06/app_version-1.0.1-py3-none-any.whl
  821. Collecting pytest-runner
  822.  Downloading https://files.pythonhosted.org/packages/16/45/81b5262c0efc08882bdf183b788e6d28e3d684863990996d8b60967d48da/pytest_runner-5.2-py2.py3-none-any.whl
  823. Collecting coreapi>=2.3.0
  824.  Downloading https://files.pythonhosted.org/packages/fc/3a/9dedaad22962770edd334222f2b3c3e7ad5e1c8cab1d6a7992c30329e2e5/coreapi-2.3.3-py2.py3-none-any.whl
  825. Collecting simplejson
  826.  Downloading https://files.pythonhosted.org/packages/98/87/a7b98aa9256c8843f92878966dc3d8d914c14aad97e2c5ce4798d5743e07/simplejson-3.17.0.tar.gz (83kB)
  827. Collecting openapi-codec>=1.3.1
  828.  Downloading https://files.pythonhosted.org/packages/78/e5/e0b5aba60c645dde952bc8a9df1f2b0bef27302908839b0a29284c9245d4/openapi-codec-1.3.2.tar.gz
  829. Collecting 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)
  831. Collecting python-dateutil
  832.  Downloading https://files.pythonhosted.org/packages/d4/70/d60450c3dd48ef87586924207ae8907090de0b306af2bce5d134d78615cb/python_dateutil-2.8.1-py2.py3-none-any.whl (227kB)
  833. Collecting httplib2<1dev,>=0.9.2
  834.  Downloading https://files.pythonhosted.org/packages/d2/84/f97b9efdb17c9b73e133bdbf2b4bfd09cd0be655e36e3ee3c4bec9095048/httplib2-0.14.0-py3-none-any.whl (94kB)
  835. Collecting 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
  837. Collecting uritemplate<4dev,>=3.0.0
  838.  Downloading https://files.pythonhosted.org/packages/e5/7d/9d5a640c4f8bf2c8b1afc015e9a9d8de32e13c9016dcc4b0ec03481fb396/uritemplate-3.0.0-py2.py3-none-any.whl
  839. Collecting rsa>=3.1.4
  840.  Downloading https://files.pythonhosted.org/packages/02/e5/38518af393f7c214357079ce67a317307936896e961e35450b70fad2a9cf/rsa-4.0-py2.py3-none-any.whl
  841. Collecting cachetools>=2.0.0
  842.  Downloading https://files.pythonhosted.org/packages/2f/a6/30b0a0bef12283e83e58c1d6e7b5aabc7acfc4110df81a4471655d33e704/cachetools-3.1.1-py2.py3-none-any.whl
  843. Collecting 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)
  845. Collecting 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
  847. Collecting 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
  849. Collecting pyasn1>=0.1.7
  850.  Downloading https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl (77kB)
  851. Collecting olefile
  852.  Downloading https://files.pythonhosted.org/packages/34/81/e1ac43c6b45b4c5f8d9352396a14144bba52c8fec72a80f425f6a4d653ad/olefile-0.46.zip (112kB)
  853. Collecting pytest>=2.9
  854.  Downloading https://files.pythonhosted.org/packages/da/ed/d22d7f06eb1107271694ed2171b9d52e8eea38d9757124e75ba13324ac77/pytest-5.3.1-py3-none-any.whl (233kB)
  855. Collecting sendgrid<4,>=3.5
  856.  Downloading https://files.pythonhosted.org/packages/d6/be/5c2cf158c9036224676b3b01042c27d722fba63b46cb87a4fdaf24fa3621/sendgrid-3.6.5-py2.py3-none-any.whl
  857. Requirement 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)
  858. Collecting 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
  860. Collecting protobuf>=3.4.0
  861.  Downloading https://files.pythonhosted.org/packages/4e/26/1517e42a81de4f28ed0f3cdadb628c1b72f3a28f38323a05e251f5df0a29/protobuf-3.11.1-py2.py3-none-any.whl (434kB)
  862. Collecting trafaret==1.2.0
  863.  Downloading https://files.pythonhosted.org/packages/02/59/b502446f3985a9351ea4bfca4e90471668206d3a957e5e2ea256fc3d9d35/trafaret-1.2.0-py3-none-any.whl
  864. Collecting webencodings
  865.  Downloading https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl
  866. Collecting unidecode
  867.  Downloading https://files.pythonhosted.org/packages/d0/42/d9edfed04228bacea2d824904cae367ee9efd05e6cce7ceaaedd0b0ad964/Unidecode-1.1.1-py2.py3-none-any.whl (238kB)
  868. Collecting django-js-asset
  869.  Downloading https://files.pythonhosted.org/packages/aa/2d/98089cf51c8e83bc70723021390b94a3638a4a0ce30a47e2e70476b2095d/django_js_asset-1.2.2-py2.py3-none-any.whl
  870. Collecting 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)
  872. Collecting certifi>=2017.4.17
  873.  Downloading https://files.pythonhosted.org/packages/b9/63/df50cac98ea0d5b006c55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.whl (156kB)
  874. Collecting idna<2.9,>=2.5
  875.  Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)
  876. Collecting 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)
  878. Collecting coreschema
  879.  Downloading https://files.pythonhosted.org/packages/93/08/1d105a70104e078718421e6c555b8b293259e7fc92f7e9a04869947f198f/coreschema-0.0.4.tar.gz
  880. Collecting itypes
  881.  Downloading https://files.pythonhosted.org/packages/d3/24/5e511590f95582efe64b8ad2f6dadd85c5563c9dcf40171ea5a70adbf5a9/itypes-1.1.0.tar.gz
  882. Collecting py>=1.5.0
  883.  Downloading https://files.pythonhosted.org/packages/76/bc/394ad449851729244a97857ee14d7cba61ddb268dce3db538ba2f2ba1f0f/py-1.8.0-py2.py3-none-any.whl (83kB)
  884. Collecting pluggy<1.0,>=0.12
  885.  Downloading https://files.pythonhosted.org/packages/a0/28/85c7aa31b80d150b772fbe4a229487bc6644da9ccb7e427dd8cc60cb8a62/pluggy-0.13.1-py2.py3-none-any.whl
  886. Collecting packaging
  887.  Downloading https://files.pythonhosted.org/packages/cf/94/9672c2d4b126e74c4496c6b3c58a8b51d6419267be9e70660ba23374c875/packaging-19.2-py2.py3-none-any.whl
  888. Collecting 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)
  890. Collecting 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
  892. Collecting wcwidth
  893.  Downloading https://files.pythonhosted.org/packages/7e/9f/526a6947247599b084ee5232e4f9190a38f398d7300d866af3ab571a5bfe/wcwidth-0.1.7-py2.py3-none-any.whl
  894. Collecting attrs>=17.4.0
  895.  Downloading https://files.pythonhosted.org/packages/a2/db/4313ab3be961f7a763066401fb77f7748373b6094076ae2bda2806988af6/attrs-19.3.0-py2.py3-none-any.whl
  896. Collecting 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
  898. Collecting jinja2
  899.  Downloading https://files.pythonhosted.org/packages/65/e0/eb35e762802015cab1ccee04e8a277b03f1d8e53da3ec3106882ec42558b/Jinja2-2.10.3-py2.py3-none-any.whl (125kB)
  900. Collecting pyparsing>=2.0.2
  901.  Downloading https://files.pythonhosted.org/packages/c0/0c/fc2e007d9a992d997f04a80125b0f183da7fb554f1de701bbb70a8e7d479/pyparsing-2.4.5-py2.py3-none-any.whl (67kB)
  902. Collecting zipp>=0.5
  903.  Downloading https://files.pythonhosted.org/packages/74/3d/1ee25a26411ba0401b43c6376d2316a71addcc72ef8690b101b4ea56d76a/zipp-0.6.0-py2.py3-none-any.whl
  904. Collecting MarkupSafe>=0.23
  905.  Downloading https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz
  906. Building 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
  1008. Successfully 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
  1009. ERROR: 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.
  1010. Installing 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
  1012. Successfully 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)
  1014. OK: 300 MiB in 76 packages
  1015. (1/2) Purging .build-deps (0)
  1016. (2/2) Purging linux-headers (4.4.6-r2)
  1017. OK: 294 MiB in 74 packages
  1018. Removing intermediate container aeb011cdccbb
  1019.  ---> 90f5c49f8d88
  1020. Step 39/42 : ADD ./src/ /opt/code/
  1021.  ---> c3554e876b20
  1022. Step 40/42 : ADD ./docker/db/* /opt/code/db/
  1023.  ---> 97d996c71141
  1024. Step 41/42 : RUN /opt/code/db/prepare_django_db.sh
  1025.  ---> Running in 746e98b71a60
  1026. Waiting till up
  1027. psql: 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"?
  1030. Postgres is unavailable - sleeping
  1031. LOG:  database system was shut down at 2019-12-03 21:12:30 EST
  1032. LOG:  MultiXact member wraparound protections are now enabled
  1033. LOG:  database system is ready to accept connections
  1034. LOG:  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.  
  1046. Migrating DB
  1047. SETTINGS INFO     ALLOWED_HOSTS: []
  1048. api: WARNING  [2019-12-04 02:27:19,542] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.018s]
  1049. Traceback (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):
  1056. socket.gaierror: [Errno -2] Name does not resolve
  1057.  
  1058. During handling of the above exception, another exception occurred:
  1059.  
  1060. Traceback (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
  1087. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3b668>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1088. api: WARNING  [2019-12-04 02:27:20,552] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.004s]
  1089. Traceback (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):
  1096. socket.gaierror: [Errno -2] Name does not resolve
  1097.  
  1098. During handling of the above exception, another exception occurred:
  1099.  
  1100. Traceback (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
  1127. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3b898>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1128. api: WARNING  [2019-12-04 02:27:23,538] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
  1129. Traceback (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):
  1136. socket.gaierror: [Errno -2] Name does not resolve
  1137.  
  1138. During handling of the above exception, another exception occurred:
  1139.  
  1140. Traceback (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
  1167. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3b978>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1168. api: WARNING  [2019-12-04 02:27:30,556] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  1169. Traceback (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):
  1176. socket.gaierror: [Errno -2] Name does not resolve
  1177.  
  1178. During handling of the above exception, another exception occurred:
  1179.  
  1180. Traceback (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
  1207. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6a3bcf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1208. api: WARNING  [2019-12-04 02:27:30,576] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
  1209. Traceback (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):
  1216. socket.gaierror: [Errno -2] Name does not resolve
  1217.  
  1218. During handling of the above exception, another exception occurred:
  1219.  
  1220. Traceback (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
  1247. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee358>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1248. api: WARNING  [2019-12-04 02:27:31,586] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
  1249. Traceback (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):
  1256. socket.gaierror: [Errno -2] Name does not resolve
  1257.  
  1258. During handling of the above exception, another exception occurred:
  1259.  
  1260. Traceback (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
  1287. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee400>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1288. api: WARNING  [2019-12-04 02:27:34,598] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.004s]
  1289. Traceback (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):
  1296. socket.gaierror: [Errno -2] Name does not resolve
  1297.  
  1298. During handling of the above exception, another exception occurred:
  1299.  
  1300. Traceback (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
  1327. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee4e0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1328. api: WARNING  [2019-12-04 02:27:41,617] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
  1329. Traceback (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):
  1336. socket.gaierror: [Errno -2] Name does not resolve
  1337.  
  1338. During handling of the above exception, another exception occurred:
  1339.  
  1340. Traceback (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
  1367. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e6aee5c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1368. api: WARNING  [2019-12-04 02:27:41,684] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
  1369. Traceback (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):
  1376. socket.gaierror: [Errno -2] Name does not resolve
  1377.  
  1378. During handling of the above exception, another exception occurred:
  1379.  
  1380. Traceback (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
  1407. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf048>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1408. api: WARNING  [2019-12-04 02:27:42,696] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  1409. Traceback (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):
  1416. socket.gaierror: [Errno -2] Name does not resolve
  1417.  
  1418. During handling of the above exception, another exception occurred:
  1419.  
  1420. Traceback (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
  1447. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf0f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1448. api: WARNING  [2019-12-04 02:27:45,712] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
  1449. Traceback (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):
  1456. socket.gaierror: [Errno -2] Name does not resolve
  1457.  
  1458. During handling of the above exception, another exception occurred:
  1459.  
  1460. Traceback (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
  1487. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf1d0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1488. api: WARNING  [2019-12-04 02:27:52,694] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  1489. Traceback (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):
  1496. socket.gaierror: [Errno -2] Name does not resolve
  1497.  
  1498. During handling of the above exception, another exception occurred:
  1499.  
  1500. Traceback (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
  1527. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f80e3ccf2b0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1528. Traceback (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")
  1587. Exception: environment variable FILESTACK_API_KEY is not set
  1588. Migrating to test DB
  1589. CREATE DATABASE
  1590. Loading fixtures
  1591. SETTINGS INFO     ALLOWED_HOSTS: []
  1592. api: WARNING  [2019-12-04 02:27:59,251] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  1593. Traceback (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):
  1600. socket.gaierror: [Errno -2] Name does not resolve
  1601.  
  1602. During handling of the above exception, another exception occurred:
  1603.  
  1604. Traceback (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
  1631. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf0f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1632. api: WARNING  [2019-12-04 02:28:00,271] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
  1633. Traceback (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):
  1640. socket.gaierror: [Errno -2] Name does not resolve
  1641.  
  1642. During handling of the above exception, another exception occurred:
  1643.  
  1644. Traceback (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
  1671. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf320>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1672. api: WARNING  [2019-12-04 02:28:03,277] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
  1673. Traceback (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):
  1680. socket.gaierror: [Errno -2] Name does not resolve
  1681.  
  1682. During handling of the above exception, another exception occurred:
  1683.  
  1684. Traceback (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
  1711. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf400>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1712. api: WARNING  [2019-12-04 02:28:10,301] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  1713. Traceback (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):
  1720. socket.gaierror: [Errno -2] Name does not resolve
  1721.  
  1722. During handling of the above exception, another exception occurred:
  1723.  
  1724. Traceback (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
  1751. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ebaf588>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1752. api: WARNING  [2019-12-04 02:28:10,327] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
  1753. Traceback (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):
  1760. socket.gaierror: [Errno -2] Name does not resolve
  1761.  
  1762. During handling of the above exception, another exception occurred:
  1763.  
  1764. Traceback (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
  1791. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50b70>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1792. api: WARNING  [2019-12-04 02:28:11,341] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
  1793. Traceback (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):
  1800. socket.gaierror: [Errno -2] Name does not resolve
  1801.  
  1802. During handling of the above exception, another exception occurred:
  1803.  
  1804. Traceback (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
  1831. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50c18>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1832. api: WARNING  [2019-12-04 02:28:14,360] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
  1833. Traceback (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):
  1840. socket.gaierror: [Errno -2] Name does not resolve
  1841.  
  1842. During handling of the above exception, another exception occurred:
  1843.  
  1844. Traceback (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
  1871. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50cf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1872. api: WARNING  [2019-12-04 02:28:21,384] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
  1873. Traceback (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):
  1880. socket.gaierror: [Errno -2] Name does not resolve
  1881.  
  1882. During handling of the above exception, another exception occurred:
  1883.  
  1884. Traceback (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
  1911. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0eb50dd8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1912. api: WARNING  [2019-12-04 02:28:21,443] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.005s]
  1913. Traceback (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):
  1920. socket.gaierror: [Errno -2] Name does not resolve
  1921.  
  1922. During handling of the above exception, another exception occurred:
  1923.  
  1924. Traceback (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
  1951. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea753c8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1952. api: WARNING  [2019-12-04 02:28:22,418] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.005s]
  1953. Traceback (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):
  1960. socket.gaierror: [Errno -2] Name does not resolve
  1961.  
  1962. During handling of the above exception, another exception occurred:
  1963.  
  1964. Traceback (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
  1991. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea75470>: Failed to establish a new connection: [Errno -2] Name does not resolve
  1992. api: WARNING  [2019-12-04 02:28:25,428] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
  1993. Traceback (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):
  2000. socket.gaierror: [Errno -2] Name does not resolve
  2001.  
  2002. During handling of the above exception, another exception occurred:
  2003.  
  2004. Traceback (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
  2031. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea75588>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2032. api: WARNING  [2019-12-04 02:28:32,450] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.004s]
  2033. Traceback (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):
  2040. socket.gaierror: [Errno -2] Name does not resolve
  2041.  
  2042. During handling of the above exception, another exception occurred:
  2043.  
  2044. Traceback (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
  2071. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fab0ea755c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2072. Traceback (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")
  2127. Exception: environment variable FILESTACK_API_KEY is not set
  2128. Loading nonfixture data
  2129. SETTINGS INFO     ALLOWED_HOSTS: []
  2130. api: WARNING  [2019-12-04 02:28:37,135] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  2131. Traceback (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):
  2138. socket.gaierror: [Errno -2] Name does not resolve
  2139.  
  2140. During handling of the above exception, another exception occurred:
  2141.  
  2142. Traceback (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
  2169. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf4970f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2170. api: WARNING  [2019-12-04 02:28:38,151] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
  2171. Traceback (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):
  2178. socket.gaierror: [Errno -2] Name does not resolve
  2179.  
  2180. During handling of the above exception, another exception occurred:
  2181.  
  2182. Traceback (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
  2209. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf497320>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2210. api: WARNING  [2019-12-04 02:28:41,168] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  2211. Traceback (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):
  2218. socket.gaierror: [Errno -2] Name does not resolve
  2219.  
  2220. During handling of the above exception, another exception occurred:
  2221.  
  2222. Traceback (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
  2249. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf497400>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2250. api: WARNING  [2019-12-04 02:28:48,185] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  2251. Traceback (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):
  2258. socket.gaierror: [Errno -2] Name does not resolve
  2259.  
  2260. During handling of the above exception, another exception occurred:
  2261.  
  2262. Traceback (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
  2289. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf497588>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2290. api: WARNING  [2019-12-04 02:28:48,207] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
  2291. Traceback (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):
  2298. socket.gaierror: [Errno -2] Name does not resolve
  2299.  
  2300. During handling of the above exception, another exception occurred:
  2301.  
  2302. Traceback (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
  2329. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bb70>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2330. api: WARNING  [2019-12-04 02:28:49,221] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.004s]
  2331. Traceback (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):
  2338. socket.gaierror: [Errno -2] Name does not resolve
  2339.  
  2340. During handling of the above exception, another exception occurred:
  2341.  
  2342. Traceback (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
  2369. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bc18>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2370. api: WARNING  [2019-12-04 02:28:52,200] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
  2371. Traceback (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):
  2378. socket.gaierror: [Errno -2] Name does not resolve
  2379.  
  2380. During handling of the above exception, another exception occurred:
  2381.  
  2382. Traceback (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
  2409. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bcf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2410. api: WARNING  [2019-12-04 02:28:59,225] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.006s]
  2411. Traceback (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):
  2418. socket.gaierror: [Errno -2] Name does not resolve
  2419.  
  2420. During handling of the above exception, another exception occurred:
  2421.  
  2422. Traceback (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
  2449. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf43bdd8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2450. api: WARNING  [2019-12-04 02:28:59,276] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  2451. Traceback (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):
  2458. socket.gaierror: [Errno -2] Name does not resolve
  2459.  
  2460. During handling of the above exception, another exception occurred:
  2461.  
  2462. Traceback (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
  2489. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f3c8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2490. api: WARNING  [2019-12-04 02:29:00,296] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.006s]
  2491. Traceback (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):
  2498. socket.gaierror: [Errno -2] Name does not resolve
  2499.  
  2500. During handling of the above exception, another exception occurred:
  2501.  
  2502. Traceback (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
  2529. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f470>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2530. api: WARNING  [2019-12-04 02:29:03,308] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  2531. Traceback (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):
  2538. socket.gaierror: [Errno -2] Name does not resolve
  2539.  
  2540. During handling of the above exception, another exception occurred:
  2541.  
  2542. Traceback (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
  2569. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f588>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2570. api: WARNING  [2019-12-04 02:29:10,323] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  2571. Traceback (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):
  2578. socket.gaierror: [Errno -2] Name does not resolve
  2579.  
  2580. During handling of the above exception, another exception occurred:
  2581.  
  2582. Traceback (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
  2609. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f0daf35f5c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2610. Traceback (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")
  2665. Exception: environment variable FILESTACK_API_KEY is not set
  2666. Setting up builtin auth
  2667. SETTINGS INFO     ALLOWED_HOSTS: []
  2668. api: WARNING  [2019-12-04 02:29:18,939] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.006s]
  2669. Traceback (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):
  2676. socket.gaierror: [Errno -2] Name does not resolve
  2677.  
  2678. During handling of the above exception, another exception occurred:
  2679.  
  2680. Traceback (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
  2707. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb6857840f0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2708. api: WARNING  [2019-12-04 02:29:19,948] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
  2709. Traceback (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):
  2716. socket.gaierror: [Errno -2] Name does not resolve
  2717.  
  2718. During handling of the above exception, another exception occurred:
  2719.  
  2720. Traceback (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
  2747. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685784320>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2748. api: WARNING  [2019-12-04 02:29:22,929] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.005s]
  2749. Traceback (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):
  2756. socket.gaierror: [Errno -2] Name does not resolve
  2757.  
  2758. During handling of the above exception, another exception occurred:
  2759.  
  2760. Traceback (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
  2787. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685784400>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2788. api: WARNING  [2019-12-04 02:29:29,944] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:N/A request:0.003s]
  2789. Traceback (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):
  2796. socket.gaierror: [Errno -2] Name does not resolve
  2797.  
  2798. During handling of the above exception, another exception occurred:
  2799.  
  2800. Traceback (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
  2827. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685784588>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2828. api: WARNING  [2019-12-04 02:29:29,964] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.004s]
  2829. Traceback (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):
  2836. socket.gaierror: [Errno -2] Name does not resolve
  2837.  
  2838. During handling of the above exception, another exception occurred:
  2839.  
  2840. Traceback (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
  2867. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727b70>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2868. api: WARNING  [2019-12-04 02:29:30,990] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.018s]
  2869. Traceback (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):
  2876. socket.gaierror: [Errno -2] Name does not resolve
  2877.  
  2878. During handling of the above exception, another exception occurred:
  2879.  
  2880. Traceback (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
  2907. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727c18>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2908. api: WARNING  [2019-12-04 02:29:34,005] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.003s]
  2909. Traceback (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):
  2916. socket.gaierror: [Errno -2] Name does not resolve
  2917.  
  2918. During handling of the above exception, another exception occurred:
  2919.  
  2920. Traceback (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
  2947. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727cf8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2948. api: WARNING  [2019-12-04 02:29:41,029] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:N/A request:0.005s]
  2949. Traceback (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):
  2956. socket.gaierror: [Errno -2] Name does not resolve
  2957.  
  2958. During handling of the above exception, another exception occurred:
  2959.  
  2960. Traceback (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
  2987. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb685727dd8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  2988. api: WARNING  [2019-12-04 02:29:41,079] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  2989. Traceback (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):
  2996. socket.gaierror: [Errno -2] Name does not resolve
  2997.  
  2998. During handling of the above exception, another exception occurred:
  2999.  
  3000. Traceback (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
  3027. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a3c8>: Failed to establish a new connection: [Errno -2] Name does not resolve
  3028. api: WARNING  [2019-12-04 02:29:42,091] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  3029. Traceback (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):
  3036. socket.gaierror: [Errno -2] Name does not resolve
  3037.  
  3038. During handling of the above exception, another exception occurred:
  3039.  
  3040. Traceback (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
  3067. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a470>: Failed to establish a new connection: [Errno -2] Name does not resolve
  3068. api: WARNING  [2019-12-04 02:29:45,101] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  3069. Traceback (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):
  3076. socket.gaierror: [Errno -2] Name does not resolve
  3077.  
  3078. During handling of the above exception, another exception occurred:
  3079.  
  3080. Traceback (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
  3107. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a588>: Failed to establish a new connection: [Errno -2] Name does not resolve
  3108. api: WARNING  [2019-12-04 02:29:52,079] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:N/A request:0.003s]
  3109. Traceback (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):
  3116. socket.gaierror: [Errno -2] Name does not resolve
  3117.  
  3118. During handling of the above exception, another exception occurred:
  3119.  
  3120. Traceback (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
  3147. urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7fb68564a5c0>: Failed to establish a new connection: [Errno -2] Name does not resolve
  3148. Traceback (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")
  3203. Exception: environment variable FILESTACK_API_KEY is not set
  3204. LOG:  received smart shutdown request
  3205. LOG:  autovacuum launcher shutting down
  3206. LOG:  shutting down
  3207. LOG:  database system is shut down
  3208. Removing intermediate container 746e98b71a60
  3209.  ---> 1f1931c07595
  3210. Step 42/42 : CMD ["su-exec",  "postgres", "postgres"]
  3211.  ---> Running in 519edfa9d9c4
  3212. Removing intermediate container 519edfa9d9c4
  3213.  ---> c1e4c9b934ea
  3214. Successfully built c1e4c9b934ea
  3215. Successfully tagged getit_db:latest
  3216. Building internal-cbs
  3217. Step 1/13 : FROM golang:1.11.4-alpine3.8
  3218.  ---> f56365ec0638
  3219. Step 2/13 : ENV GOOGLE_APPLICATION_CREDENTIALS=
  3220.  ---> Running in 33156a79262e
  3221. Removing intermediate container 33156a79262e
  3222.  ---> c501f8e88899
  3223. Step 3/13 : ENV RECAPTCHA_KEY_FILE=
  3224.  ---> Running in ec18040a89e3
  3225. Removing intermediate container ec18040a89e3
  3226.  ---> d1893c813ab2
  3227. Step 4/13 : ENV ELASTIC_HOST=
  3228.  ---> Running in 0297b0b17459
  3229. Removing intermediate container 0297b0b17459
  3230.  ---> 5630ad809ed2
  3231. Step 5/13 : ENV ELASTIC_NAME=
  3232.  ---> Running in 9a8dea2f6528
  3233. Removing intermediate container 9a8dea2f6528
  3234.  ---> 3443de20e72f
  3235. Step 6/13 : ENV ELASTIC_PASSWORD=
  3236.  ---> Running in d9e069e8bb2e
  3237. Removing intermediate container d9e069e8bb2e
  3238.  ---> a8634054ec8c
  3239. Step 7/13 : RUN apk add --update git
  3240.  ---> Running in 273fee7606e2
  3241. fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
  3242. fetch 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)
  3249. Executing busybox-1.28.4-r2.trigger
  3250. OK: 19 MiB in 20 packages
  3251. Removing intermediate container 273fee7606e2
  3252.  ---> 8d5107c3ad25
  3253. Step 8/13 : RUN mkdir -p /opt/code/
  3254.  ---> Running in 20bfe9c895e9
  3255. Removing intermediate container 20bfe9c895e9
  3256.  ---> 46f40855aa6d
  3257. Step 9/13 : WORKDIR /opt/code/
  3258.  ---> Running in 03b22ebff599
  3259. Removing intermediate container 03b22ebff599
  3260.  ---> 12343b1c1ed0
  3261. Step 10/13 : ADD ./ /opt/code/
  3262.  ---> c08e8a3b1d43
  3263. Step 11/13 : RUN CGO_ENABLED=0 go build -mod=vendor -o /go/bin/internal-cbs
  3264.  ---> Running in 03de12c7d8f8
  3265. Removing intermediate container 03de12c7d8f8
  3266.  ---> 099779de0344
  3267. Step 12/13 : ENTRYPOINT /go/bin/internal-cbs
  3268.  ---> Running in 3153fa16f38f
  3269. Removing intermediate container 3153fa16f38f
  3270.  ---> b434b338c0fe
  3271. Step 13/13 : EXPOSE 8080
  3272.  ---> Running in 21c66dce9df4
  3273. Removing intermediate container 21c66dce9df4
  3274.  ---> f3d50435a6a8
  3275. Successfully built f3d50435a6a8
  3276. Successfully tagged getit_internal-cbs:latest
  3277. Building click-service
  3278. Step 1/13 : FROM golang:1.11.4-alpine3.8
  3279.  ---> f56365ec0638
  3280. Step 2/13 : ENV GOOGLE_APPLICATION_CREDENTIALS=
  3281.  ---> Using cache
  3282.  ---> c501f8e88899
  3283. Step 3/13 : ENV RECAPTCHA_KEY_FILE=
  3284.  ---> Using cache
  3285.  ---> d1893c813ab2
  3286. Step 4/13 : ENV ELASTIC_HOST=
  3287.  ---> Using cache
  3288.  ---> 5630ad809ed2
  3289. Step 5/13 : ENV ELASTIC_NAME=
  3290.  ---> Using cache
  3291.  ---> 3443de20e72f
  3292. Step 6/13 : ENV ELASTIC_PASSWORD=
  3293.  ---> Using cache
  3294.  ---> a8634054ec8c
  3295. Step 7/13 : RUN apk add --update git
  3296.  ---> Using cache
  3297.  ---> 8d5107c3ad25
  3298. Step 8/13 : RUN mkdir -p /opt/code/
  3299.  ---> Using cache
  3300.  ---> 46f40855aa6d
  3301. Step 9/13 : WORKDIR /opt/code/
  3302.  ---> Using cache
  3303.  ---> 12343b1c1ed0
  3304. Step 10/13 : ADD ./ /opt/code/
  3305.  ---> ccfa99207727
  3306. Step 11/13 : RUN CGO_ENABLED=0 go build -mod=vendor -o /go/bin/click-service
  3307.  ---> Running in 2950d84e7224
  3308. Removing intermediate container 2950d84e7224
  3309.  ---> 7f009a2ac117
  3310. Step 12/13 : ENTRYPOINT /go/bin/click-service
  3311.  ---> Running in 4a9a266b2d34
  3312. Removing intermediate container 4a9a266b2d34
  3313.  ---> 0536add5d8a8
  3314. Step 13/13 : EXPOSE 8080
  3315.  ---> Running in 7ab920242b2b
  3316. Removing intermediate container 7ab920242b2b
  3317.  ---> f19fcf4f1149
  3318. Successfully built f19fcf4f1149
  3319. Successfully tagged getit_click-service:latest
  3320. Building adapult-api
  3321. Step 1/11 : FROM golang:alpine as builder
  3322. alpine: Pulling from library/golang
  3323. 89d9c30c1d48: Pull complete
  3324. 8ef94372a977: Pull complete
  3325. 1ec62c064901: Pull complete
  3326. a47b1e89d194: Pull complete
  3327. bf1a3d234800: Pull complete
  3328. Digest: sha256:9d2a7c5b6447f525da0a4f18efd2cb05bf7d70228f75d713b7a67345f30157ac
  3329. Status: Downloaded newer image for golang:alpine
  3330.  ---> 3024b4e742b0
  3331. Step 2/11 : RUN apk add git && apk add ca-certificates
  3332.  ---> Running in 1b68e8cc820d
  3333. fetch http://dl-cdn.alpinelinux.org/alpine/v3.10/main/x86_64/APKINDEX.tar.gz
  3334. fetch 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)
  3340. Executing busybox-1.30.1-r2.trigger
  3341. OK: 21 MiB in 20 packages
  3342. OK: 21 MiB in 20 packages
  3343. Removing intermediate container 1b68e8cc820d
  3344.  ---> 72654d4bd030
  3345. Step 3/11 : RUN adduser -D -g '' appuser
  3346.  ---> Running in 21a202f8fc69
  3347. Removing intermediate container 21a202f8fc69
  3348.  ---> b495a6f75076
  3349. Step 4/11 : RUN mkdir /build
  3350.  ---> Running in 212935b60558
  3351. Removing intermediate container 212935b60558
  3352.  ---> 56d6fe1c04b1
  3353. Step 5/11 : COPY . /build/
  3354.  ---> 49b551b8f8c9
  3355. Step 6/11 : WORKDIR /build
  3356.  ---> Running in d8c90aa6fe15
  3357. Removing intermediate container d8c90aa6fe15
  3358.  ---> ca1249907fc8
  3359. Step 7/11 : RUN CGO_ENABLED=0 go build -o main .
  3360.  ---> Running in c738ce1e4fd8
  3361. go: downloading cloud.google.com/go v0.38.0
  3362. go: downloading github.com/sirupsen/logrus v1.4.2
  3363. go: downloading google.golang.org/api v0.9.0
  3364. go: downloading github.com/go-chi/chi v4.0.2+incompatible
  3365. go: downloading github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
  3366. go: downloading github.com/lib/pq v1.0.0
  3367. go: downloading github.com/golang-migrate/migrate v3.5.4+incompatible
  3368. go: downloading github.com/jmoiron/sqlx v1.2.0
  3369. go: extracting github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
  3370. go: downloading github.com/kelseyhightower/envconfig v1.4.0
  3371. go: extracting github.com/go-chi/chi v4.0.2+incompatible
  3372. go: downloading github.com/pkg/errors v0.8.1
  3373. go: extracting github.com/jmoiron/sqlx v1.2.0
  3374. go: extracting github.com/golang-migrate/migrate v3.5.4+incompatible
  3375. go: extracting github.com/lib/pq v1.0.0
  3376. go: extracting github.com/sirupsen/logrus v1.4.2
  3377. go: downloading github.com/golang-migrate/migrate/v4 v4.6.1
  3378. go: downloading github.com/rollbar/rollbar-go v1.1.0
  3379. go: downloading golang.org/x/sys v0.0.0-20190913121621-c3b328c6e5a7
  3380. go: downloading github.com/go-chi/render v1.0.1
  3381. go: extracting github.com/kelseyhightower/envconfig v1.4.0
  3382. go: extracting github.com/pkg/errors v0.8.1
  3383. go: extracting github.com/go-chi/render v1.0.1
  3384. go: extracting github.com/rollbar/rollbar-go v1.1.0
  3385. go: extracting github.com/golang-migrate/migrate/v4 v4.6.1
  3386. go: downloading github.com/hashicorp/go-multierror v1.0.0
  3387. go: extracting github.com/hashicorp/go-multierror v1.0.0
  3388. go: downloading github.com/hashicorp/errwrap v1.0.0
  3389. go: extracting github.com/hashicorp/errwrap v1.0.0
  3390. go: extracting cloud.google.com/go v0.38.0
  3391. go: extracting golang.org/x/sys v0.0.0-20190913121621-c3b328c6e5a7
  3392. go: downloading google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873
  3393. go: downloading github.com/googleapis/gax-go/v2 v2.0.5
  3394. go: downloading google.golang.org/grpc v1.21.0
  3395. go: extracting github.com/googleapis/gax-go/v2 v2.0.5
  3396. go: extracting google.golang.org/grpc v1.21.0
  3397. go: downloading go.opencensus.io v0.21.0
  3398. go: downloading github.com/golang/protobuf v1.3.1
  3399. go: downloading golang.org/x/net v0.0.0-20190628185345-da137c7871d7
  3400. go: extracting go.opencensus.io v0.21.0
  3401. go: extracting github.com/golang/protobuf v1.3.1
  3402. go: downloading github.com/hashicorp/golang-lru v0.5.1
  3403. go: extracting golang.org/x/net v0.0.0-20190628185345-da137c7871d7
  3404. go: extracting github.com/hashicorp/golang-lru v0.5.1
  3405. go: downloading golang.org/x/text v0.3.2
  3406. go: extracting google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873
  3407. go: extracting google.golang.org/api v0.9.0
  3408. go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  3409. go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  3410. go: extracting golang.org/x/text v0.3.2
  3411. go: finding github.com/kelseyhightower/envconfig v1.4.0
  3412. go: finding github.com/pkg/errors v0.8.1
  3413. go: finding github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24
  3414. go: finding github.com/rollbar/rollbar-go v1.1.0
  3415. go: finding github.com/go-chi/chi v4.0.2+incompatible
  3416. go: finding cloud.google.com/go v0.38.0
  3417. go: finding github.com/golang-migrate/migrate/v4 v4.6.1
  3418. go: finding github.com/go-chi/render v1.0.1
  3419. go: finding github.com/jmoiron/sqlx v1.2.0
  3420. go: finding github.com/sirupsen/logrus v1.4.2
  3421. go: finding github.com/googleapis/gax-go/v2 v2.0.5
  3422. go: finding github.com/lib/pq v1.0.0
  3423. go: finding google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873
  3424. go: finding github.com/hashicorp/go-multierror v1.0.0
  3425. go: finding google.golang.org/api v0.9.0
  3426. go: finding google.golang.org/grpc v1.21.0
  3427. go: finding go.opencensus.io v0.21.0
  3428. go: finding github.com/golang/protobuf v1.3.1
  3429. go: finding github.com/hashicorp/errwrap v1.0.0
  3430. go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  3431. go: finding golang.org/x/net v0.0.0-20190628185345-da137c7871d7
  3432. go: finding golang.org/x/sys v0.0.0-20190913121621-c3b328c6e5a7
  3433. go: finding github.com/hashicorp/golang-lru v0.5.1
  3434. go: finding golang.org/x/text v0.3.2
  3435. Removing intermediate container c738ce1e4fd8
  3436.  ---> 09ddb37a39f7
  3437. Step 8/11 : RUN chown appuser /build
  3438.  ---> Running in a3f1b5685390
  3439. Removing intermediate container a3f1b5685390
  3440.  ---> 70fa39154bcd
  3441. Step 9/11 : USER appuser
  3442.  ---> Running in e828169943ba
  3443. Removing intermediate container e828169943ba
  3444.  ---> a1e3303beca3
  3445. Step 10/11 : EXPOSE 8080
  3446.  ---> Running in c1b17b4727b6
  3447. Removing intermediate container c1b17b4727b6
  3448.  ---> b620b7e5ae14
  3449. Step 11/11 : ENTRYPOINT ["./main"]
  3450.  ---> Running in 7dc1379f9ea6
  3451. Removing intermediate container 7dc1379f9ea6
  3452.  ---> cda7483de07a
  3453. Successfully built cda7483de07a
  3454. Successfully tagged adapult:latest
  3455. Building dev-server
  3456. Step 1/37 : FROM python:3.6.7-alpine3.6
  3457.  ---> 8f30079779ef
  3458. Step 2/37 : ARG django_secret_key
  3459.  ---> Running in d5fc67d20d49
  3460. Removing intermediate container d5fc67d20d49
  3461.  ---> 73825cd63515
  3462. Step 3/37 : ENV DJANGO_SECRET_KEY $django_secret_key
  3463.  ---> Running in 54c485789725
  3464. Removing intermediate container 54c485789725
  3465.  ---> d1a5ca83fd93
  3466. Step 4/37 : RUN apk add --update pytest
  3467.  ---> Running in 7734ff8ac053
  3468. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3469. fetch 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)
  3474. Executing busybox-1.26.2-r11.trigger
  3475. OK: 75 MiB in 29 packages
  3476. Removing intermediate container 7734ff8ac053
  3477.  ---> b81f7dde4949
  3478. Step 5/37 : RUN apk add --update postgresql-libs
  3479.  ---> Running in 374b739bd833
  3480. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3481. fetch 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)
  3487. OK: 78 MiB in 34 packages
  3488. Removing intermediate container 374b739bd833
  3489.  ---> 4bb30eb7dd44
  3490. Step 6/37 : RUN apk add --update curl
  3491.  ---> Running in 4c1da765d929
  3492. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3493. fetch 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)
  3497. Executing busybox-1.26.2-r11.trigger
  3498. OK: 79 MiB in 37 packages
  3499. Removing intermediate container 4c1da765d929
  3500.  ---> 421ce8806a94
  3501. Step 7/37 : RUN apk add --update git
  3502.  ---> Running in f2819d056bfa
  3503. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3504. fetch 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)
  3507. Executing busybox-1.26.2-r11.trigger
  3508. OK: 98 MiB in 39 packages
  3509. Removing intermediate container f2819d056bfa
  3510.  ---> 0be5173eb1b7
  3511. Step 8/37 : RUN apk add --update gettext
  3512.  ---> Running in 2f9aa680d5b9
  3513. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3514. fetch 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)
  3520. Executing busybox-1.26.2-r11.trigger
  3521. OK: 103 MiB in 44 packages
  3522. Removing intermediate container 2f9aa680d5b9
  3523.  ---> 5772b21c9459
  3524. Step 9/37 : RUN apk add --update nginx
  3525.  ---> Running in 5f88391ddc7d
  3526. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3527. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
  3528. (1/1) Installing nginx (1.12.2-r2)
  3529. Executing nginx-1.12.2-r2.pre-install
  3530. Executing busybox-1.26.2-r11.trigger
  3531. OK: 104 MiB in 45 packages
  3532. Removing intermediate container 5f88391ddc7d
  3533.  ---> 77367ccf58e7
  3534. Step 10/37 : RUN mkdir -p /run/nginx
  3535.  ---> Running in e891758e7c44
  3536. Removing intermediate container e891758e7c44
  3537.  ---> 1b0d8677b57f
  3538. Step 11/37 : RUN apk add --update tzdata
  3539.  ---> Running in 367cc0402202
  3540. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3541. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/community/x86_64/APKINDEX.tar.gz
  3542. (1/1) Installing tzdata (2019a-r0)
  3543. Executing busybox-1.26.2-r11.trigger
  3544. OK: 108 MiB in 46 packages
  3545. Removing intermediate container 367cc0402202
  3546.  ---> 92c91ea32e30
  3547. Step 12/37 : ENV TZ=America/New_York
  3548.  ---> Running in 54419d929309
  3549. Removing intermediate container 54419d929309
  3550.  ---> ff7511236516
  3551. Step 13/37 : RUN apk add --update build-base py-pip jpeg-dev zlib-dev
  3552.  ---> Running in 85e139569d3f
  3553. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3554. fetch 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)
  3583. Executing busybox-1.26.2-r11.trigger
  3584. OK: 317 MiB in 72 packages
  3585. Removing intermediate container 85e139569d3f
  3586.  ---> eaa640d64391
  3587. Step 14/37 : ENV LIBRARY_PATH=/lib:/usr/lib
  3588.  ---> Running in 3329ec6b3cae
  3589. Removing intermediate container 3329ec6b3cae
  3590.  ---> e6ac8a338a34
  3591. Step 15/37 : RUN mkdir -p /opt/code
  3592.  ---> Running in 923eecd91bc9
  3593. Removing intermediate container 923eecd91bc9
  3594.  ---> fd2f8de1bd92
  3595. Step 16/37 : RUN mkdir -p /opt/photos
  3596.  ---> Running in 1e16841773c5
  3597. Removing intermediate container 1e16841773c5
  3598.  ---> 017f9ccfb9b3
  3599. Step 17/37 : RUN mkdir -p /opt/code/tmp
  3600.  ---> Running in 56a41600f82e
  3601. Removing intermediate container 56a41600f82e
  3602.  ---> 11348f87fea7
  3603. Step 18/37 : WORKDIR /opt/code
  3604.  ---> Running in 79163d5296ca
  3605. Removing intermediate container 79163d5296ca
  3606.  ---> c852dcd69487
  3607. Step 19/37 : RUN pip3 install --upgrade setuptools
  3608.  ---> Running in 90fc90ad4c77
  3609. Collecting setuptools
  3610.   Downloading https://files.pythonhosted.org/packages/54/28/c45d8b54c1339f9644b87663945e54a8503cfef59cf0f65b3ff5dd17cf64/setuptools-42.0.2-py2.py3-none-any.whl (583kB)
  3611. Installing collected packages: setuptools
  3612.   Found existing installation: setuptools 40.6.3
  3613.     Uninstalling setuptools-40.6.3:
  3614.       Successfully uninstalled setuptools-40.6.3
  3615. Successfully installed setuptools-42.0.2
  3616. You are using pip version 18.1, however version 19.3.1 is available.
  3617. You should consider upgrading via the 'pip install --upgrade pip' command.
  3618. Removing intermediate container 90fc90ad4c77
  3619.  ---> f090913f661a
  3620. Step 20/37 : RUN pip3 install --upgrade pip
  3621.  ---> Running in de844021ed8e
  3622. Collecting pip
  3623.   Downloading https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl (1.4MB)
  3624. Installing collected packages: pip
  3625.   Found existing installation: pip 18.1
  3626.     Uninstalling pip-18.1:
  3627.       Successfully uninstalled pip-18.1
  3628. Successfully installed pip-19.3.1
  3629. Removing intermediate container de844021ed8e
  3630.  ---> 757ad4f55db8
  3631. Step 21/37 : ADD requirements.txt /opt/code/requirements.txt
  3632.  ---> 86513a07a7d3
  3633. Step 22/37 : RUN pip3 install --upgrade setuptools
  3634.  ---> Running in 857668c2859e
  3635. Requirement already up-to-date: setuptools in /usr/local/lib/python3.6/site-packages (42.0.2)
  3636. Removing intermediate container 857668c2859e
  3637.  ---> b703f7c8c0bf
  3638. Step 23/37 : RUN pip3 install --upgrade pip
  3639.  ---> Running in 93ec8ef570ef
  3640. Requirement already up-to-date: pip in /usr/local/lib/python3.6/site-packages (19.3.1)
  3641. Removing intermediate container 93ec8ef570ef
  3642.  ---> a32b5aac0b53
  3643. Step 24/37 : ADD ./vendor /opt/vendor
  3644.  ---> 928ef223c9be
  3645. Step 25/37 : ADD ./deps /opt/deps
  3646.  ---> c6dafd276c45
  3647. Step 26/37 : RUN if ls /opt/vendor/*.whl 1> /dev/null 2>&1; then pip3 install /opt/vendor/*.whl; fi
  3648.  ---> Running in 90d8b018bc33
  3649. Removing intermediate container 90d8b018bc33
  3650.  ---> f91b7a68a088
  3651. Step 27/37 : RUN mkdir -p /opt/server
  3652.  ---> Running in c3e995313586
  3653. Removing intermediate container c3e995313586
  3654.  ---> ee2b338b6e2d
  3655. Step 28/37 : RUN mkdir -p /opt/static
  3656.  ---> Running in 276770c901a5
  3657. Removing intermediate container 276770c901a5
  3658.  ---> 23b653e317b0
  3659. Step 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
  3661. fetch http://dl-cdn.alpinelinux.org/alpine/v3.6/main/x86_64/APKINDEX.tar.gz
  3662. fetch 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)
  3668. Executing busybox-1.26.2-r11.trigger
  3669. OK: 357 MiB in 77 packages
  3670. Collecting 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
  3674. Collecting bleach==2.1.2
  3675.   Downloading https://files.pythonhosted.org/packages/07/59/06f368f350cd7f226606c2bc7210c6b336312df62185de333c66d6180512/bleach-2.1.2-py2.py3-none-any.whl
  3676. Collecting coverage==4.5.1
  3677.   Downloading https://files.pythonhosted.org/packages/35/fe/e7df7289d717426093c68d156e0fd9117c8f4872b6588e8a8928a0f68424/coverage-4.5.1.tar.gz (379kB)
  3678. Collecting Django==2.1
  3679.   Downloading https://files.pythonhosted.org/packages/51/1a/e0ac7886c7123a03814178d7517dc822af0fe51a72e1a6bff26153103322/Django-2.1-py3-none-any.whl (7.3MB)
  3680. Collecting 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)
  3682. Collecting 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
  3684. Collecting 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)
  3686. Collecting 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
  3688. Collecting 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
  3690. Collecting 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)
  3692. Collecting 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
  3694. Collecting 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)
  3696. Collecting 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)
  3698. Collecting django-rest-elasticsearch==0.4.1
  3699.   Downloading https://files.pythonhosted.org/packages/f6/28/9b1039bfaeb8aa489d15d9118e51a6a3708f052c004c8a60b9f3fd3f88b8/django-rest-elasticsearch-0.4.1.tar.gz
  3700. Collecting 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)
  3702. Obtaining 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
  3705. Collecting 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
  3707. Collecting 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)
  3709. Collecting 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)
  3711. Collecting django-taggit-serializer==0.1.7
  3712.   Downloading https://files.pythonhosted.org/packages/68/c4/9737e1df18ca8af0f40f46a54af08a15d75eb7afd7805ba94c87fc042ae3/django-taggit-serializer-0.1.7.tar.gz
  3713. Collecting djangorestframework==3.9.0
  3714.   Downloading https://files.pythonhosted.org/packages/99/0b/d37a5a96c5d301e23adcabcc2f3fa659fb34e6308590f95ebb50cdbe98a1/djangorestframework-3.9.0-py2.py3-none-any.whl (924kB)
  3715. Collecting 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)
  3717. Collecting facebook-sdk==3.0.0
  3718.   Downloading https://files.pythonhosted.org/packages/64/80/a4bdc341dbd283ce4bf23445b9b3f36e21ba9fe2f130435e0892675704c4/facebook_sdk-3.0.0-py3-none-any.whl
  3719. Collecting 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)
  3721. Collecting 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)
  3723. Collecting 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)
  3725. Collecting oauth2client==4.1.3
  3726.   Downloading https://files.pythonhosted.org/packages/95/a9/4f25a14d23f0786b64875b91784607c2277eff25d48f915e39ff0cff505a/oauth2client-4.1.3-py2.py3-none-any.whl (98kB)
  3727. Collecting Pillow==4.3.0
  3728.   Downloading https://files.pythonhosted.org/packages/e0/82/ec499c78bfe4ecaa91c2f3000040451d187ed0a816d58b8543e29c48827f/Pillow-4.3.0.tar.gz (13.9MB)
  3729. Collecting psycopg2==2.7.3
  3730.   Downloading https://files.pythonhosted.org/packages/98/99/33ca02c4bc3ed1bd9ceab5614bda2e6d1d31e61ec58345b9feece238c38a/psycopg2-2.7.3.tar.gz (425kB)
  3731. Collecting pycryptodome==3.8.2
  3732.   Downloading https://files.pythonhosted.org/packages/e2/7b/12f76a8bd427ebc54f24a0df6fd776fda48087d6a9a32ae0dbc3341dac3f/pycryptodome-3.8.2.tar.gz (12.4MB)
  3733. Collecting 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
  3735. Collecting 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
  3737. Collecting pyyaml==3.12
  3738.   Downloading https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz (253kB)
  3739. Collecting rollbar==0.14.1
  3740.   Downloading https://files.pythonhosted.org/packages/88/bd/aa1e91f4d5e706a7aaf771d028ccdc100ac95c9fe286c102d9795f6ff409/rollbar-0.14.1.tar.gz (59kB)
  3741. Collecting sendgrid-django==4.2.0
  3742.   Downloading https://files.pythonhosted.org/packages/f5/94/4749ff4acae2c2ca89c5acdf8449494ef4fbc4254a705866f07c6774ea8b/sendgrid-django-4.2.0.tar.gz
  3743. Collecting smtpapi==0.3.1
  3744.   Downloading https://files.pythonhosted.org/packages/21/de/380fd07226fb481bfb12f0b8e581363bede5801f7aad53d029fd0e38be62/smtpapi-0.3.1.tar.gz
  3745. Collecting stripe==2.35.0
  3746.   Downloading https://files.pythonhosted.org/packages/66/d0/9347c19912b18c92af558a5eb3ea93db90bf1a1472d3c31282517d996695/stripe-2.35.0-py2.py3-none-any.whl (198kB)
  3747. Collecting 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
  3749. Collecting uwsgi==2.0.17.1
  3750.   Downloading https://files.pythonhosted.org/packages/a2/c9/a2d5737f63cd9df4317a4acc15d1ddf4952e28398601d8d7d706c16381e0/uwsgi-2.0.17.1.tar.gz (800kB)
  3751. Collecting 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)
  3753. Collecting 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)
  3755. Collecting grpcio==1.24.0
  3756.   Downloading https://files.pythonhosted.org/packages/5d/44/26b8e581a12837cc44a82fcdef6edcaa8b220d4f6ded1e3267f9ce126f48/grpcio-1.24.0.tar.gz (14.1MB)
  3757. Collecting filestack-python==3.0.1
  3758.   Downloading https://files.pythonhosted.org/packages/63/df/d06fd4b3761b59fa4a3876529e1824ffdb1481136285b1141255640a761f/filestack_python-3.0.1-py3-none-any.whl
  3759. Collecting 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)
  3761. Collecting six
  3762.   Downloading https://files.pythonhosted.org/packages/65/26/32b8464df2a97e6dd1b656ed26b2c194606c16fe163c695a992b36c11cdf/six-1.13.0-py2.py3-none-any.whl
  3763. Collecting pytz
  3764.   Downloading https://files.pythonhosted.org/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl (509kB)
  3765. Collecting 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)
  3767. Collecting unicode-slugify==0.1.3
  3768.   Downloading https://files.pythonhosted.org/packages/8c/ba/1a05f61c7fd72df85ae4dc1c7967a3e5a4b6c61f016e794bc7f09b2597c0/unicode-slugify-0.1.3.tar.gz
  3769. Collecting django-appconf
  3770.   Downloading https://files.pythonhosted.org/packages/f6/b3/fcec63afcf323581c4919f21e90ef8c8200034108a6a0ab47a6bf6a9327b/django_appconf-1.0.3-py2.py3-none-any.whl
  3771. Collecting pilkit>=0.2.0
  3772.   Downloading https://files.pythonhosted.org/packages/c4/5c/318d9c20f309e6a79ea4d4605f86597d05f3e007d3d1925ff02474808659/pilkit-2.0.tar.gz (161kB)
  3773. Collecting requests>=2.13.0
  3774.   Downloading https://files.pythonhosted.org/packages/51/bd/23c926cd341ea6b7dd0b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl (57kB)
  3775. Collecting oauthlib>=2.0.1
  3776.   Downloading https://files.pythonhosted.org/packages/05/57/ce2e7a8fa7c0afb54a0581b14a65b56e62b5759dbc98e80627142b8a3704/oauthlib-3.1.0-py2.py3-none-any.whl (147kB)
  3777. Collecting app-version
  3778.   Downloading https://files.pythonhosted.org/packages/a7/03/5eeff1025f889d8d85738078c4f48e806aafe27c93ed1a52f3fbec029b06/app_version-1.0.1-py3-none-any.whl
  3779. Collecting pytest-runner
  3780.   Downloading https://files.pythonhosted.org/packages/16/45/81b5262c0efc08882bdf183b788e6d28e3d684863990996d8b60967d48da/pytest_runner-5.2-py2.py3-none-any.whl
  3781. Collecting coreapi>=2.3.0
  3782.   Downloading https://files.pythonhosted.org/packages/fc/3a/9dedaad22962770edd334222f2b3c3e7ad5e1c8cab1d6a7992c30329e2e5/coreapi-2.3.3-py2.py3-none-any.whl
  3783. Collecting openapi-codec>=1.3.1
  3784.   Downloading https://files.pythonhosted.org/packages/78/e5/e0b5aba60c645dde952bc8a9df1f2b0bef27302908839b0a29284c9245d4/openapi-codec-1.3.2.tar.gz
  3785. Collecting simplejson
  3786.   Downloading https://files.pythonhosted.org/packages/98/87/a7b98aa9256c8843f92878966dc3d8d914c14aad97e2c5ce4798d5743e07/simplejson-3.17.0.tar.gz (83kB)
  3787. Collecting 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)
  3789. Collecting python-dateutil
  3790.   Downloading https://files.pythonhosted.org/packages/d4/70/d60450c3dd48ef87586924207ae8907090de0b306af2bce5d134d78615cb/python_dateutil-2.8.1-py2.py3-none-any.whl (227kB)
  3791. Collecting httplib2<1dev,>=0.9.2
  3792.   Downloading https://files.pythonhosted.org/packages/d2/84/f97b9efdb17c9b73e133bdbf2b4bfd09cd0be655e36e3ee3c4bec9095048/httplib2-0.14.0-py3-none-any.whl (94kB)
  3793. Collecting uritemplate<4dev,>=3.0.0
  3794.   Downloading https://files.pythonhosted.org/packages/e5/7d/9d5a640c4f8bf2c8b1afc015e9a9d8de32e13c9016dcc4b0ec03481fb396/uritemplate-3.0.0-py2.py3-none-any.whl
  3795. Collecting 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
  3797. Collecting cachetools>=2.0.0
  3798.   Downloading https://files.pythonhosted.org/packages/2f/a6/30b0a0bef12283e83e58c1d6e7b5aabc7acfc4110df81a4471655d33e704/cachetools-3.1.1-py2.py3-none-any.whl
  3799. Collecting 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)
  3801. Collecting rsa>=3.1.4
  3802.   Downloading https://files.pythonhosted.org/packages/02/e5/38518af393f7c214357079ce67a317307936896e961e35450b70fad2a9cf/rsa-4.0-py2.py3-none-any.whl
  3803. Collecting 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
  3805. Collecting 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
  3807. Collecting pyasn1>=0.1.7
  3808.   Downloading https://files.pythonhosted.org/packages/62/1e/a94a8d635fa3ce4cfc7f506003548d0a2447ae76fd5ca53932970fe3053f/pyasn1-0.4.8-py2.py3-none-any.whl (77kB)
  3809. Collecting olefile
  3810.   Downloading https://files.pythonhosted.org/packages/34/81/e1ac43c6b45b4c5f8d9352396a14144bba52c8fec72a80f425f6a4d653ad/olefile-0.46.zip (112kB)
  3811. Collecting pytest>=2.9
  3812.   Downloading https://files.pythonhosted.org/packages/da/ed/d22d7f06eb1107271694ed2171b9d52e8eea38d9757124e75ba13324ac77/pytest-5.3.1-py3-none-any.whl (233kB)
  3813. Collecting sendgrid<4,>=3.5
  3814.   Downloading https://files.pythonhosted.org/packages/d6/be/5c2cf158c9036224676b3b01042c27d722fba63b46cb87a4fdaf24fa3621/sendgrid-3.6.5-py2.py3-none-any.whl
  3815. Collecting 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
  3817. Requirement 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)
  3818. Collecting protobuf>=3.4.0
  3819.   Downloading https://files.pythonhosted.org/packages/4e/26/1517e42a81de4f28ed0f3cdadb628c1b72f3a28f38323a05e251f5df0a29/protobuf-3.11.1-py2.py3-none-any.whl (434kB)
  3820. Collecting trafaret==1.2.0
  3821.   Downloading https://files.pythonhosted.org/packages/02/59/b502446f3985a9351ea4bfca4e90471668206d3a957e5e2ea256fc3d9d35/trafaret-1.2.0-py3-none-any.whl
  3822. Collecting webencodings
  3823.   Downloading https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl
  3824. Collecting django-js-asset
  3825.   Downloading https://files.pythonhosted.org/packages/aa/2d/98089cf51c8e83bc70723021390b94a3638a4a0ce30a47e2e70476b2095d/django_js_asset-1.2.2-py2.py3-none-any.whl
  3826. Collecting unidecode
  3827.   Downloading https://files.pythonhosted.org/packages/d0/42/d9edfed04228bacea2d824904cae367ee9efd05e6cce7ceaaedd0b0ad964/Unidecode-1.1.1-py2.py3-none-any.whl (238kB)
  3828. Collecting 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)
  3830. Collecting idna<2.9,>=2.5
  3831.   Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl (58kB)
  3832. Collecting 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)
  3834. Collecting certifi>=2017.4.17
  3835.   Downloading https://files.pythonhosted.org/packages/b9/63/df50cac98ea0d5b006c55a399c3bf1db9da7b5a24de7890bc9cfd5dd9e99/certifi-2019.11.28-py2.py3-none-any.whl (156kB)
  3836. Collecting coreschema
  3837.   Downloading https://files.pythonhosted.org/packages/93/08/1d105a70104e078718421e6c555b8b293259e7fc92f7e9a04869947f198f/coreschema-0.0.4.tar.gz
  3838. Collecting itypes
  3839.   Downloading https://files.pythonhosted.org/packages/d3/24/5e511590f95582efe64b8ad2f6dadd85c5563c9dcf40171ea5a70adbf5a9/itypes-1.1.0.tar.gz
  3840. Collecting 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)
  3842. Collecting wcwidth
  3843.   Downloading https://files.pythonhosted.org/packages/7e/9f/526a6947247599b084ee5232e4f9190a38f398d7300d866af3ab571a5bfe/wcwidth-0.1.7-py2.py3-none-any.whl
  3844. Collecting 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
  3846. Collecting attrs>=17.4.0
  3847.   Downloading https://files.pythonhosted.org/packages/a2/db/4313ab3be961f7a763066401fb77f7748373b6094076ae2bda2806988af6/attrs-19.3.0-py2.py3-none-any.whl
  3848. Collecting py>=1.5.0
  3849.   Downloading https://files.pythonhosted.org/packages/76/bc/394ad449851729244a97857ee14d7cba61ddb268dce3db538ba2f2ba1f0f/py-1.8.0-py2.py3-none-any.whl (83kB)
  3850. Collecting packaging
  3851.   Downloading https://files.pythonhosted.org/packages/cf/94/9672c2d4b126e74c4496c6b3c58a8b51d6419267be9e70660ba23374c875/packaging-19.2-py2.py3-none-any.whl
  3852. Collecting pluggy<1.0,>=0.12
  3853.   Downloading https://files.pythonhosted.org/packages/a0/28/85c7aa31b80d150b772fbe4a229487bc6644da9ccb7e427dd8cc60cb8a62/pluggy-0.13.1-py2.py3-none-any.whl
  3854. Collecting 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
  3856. Collecting jinja2
  3857.   Downloading https://files.pythonhosted.org/packages/65/e0/eb35e762802015cab1ccee04e8a277b03f1d8e53da3ec3106882ec42558b/Jinja2-2.10.3-py2.py3-none-any.whl (125kB)
  3858. Collecting zipp>=0.5
  3859.   Downloading https://files.pythonhosted.org/packages/74/3d/1ee25a26411ba0401b43c6376d2316a71addcc72ef8690b101b4ea56d76a/zipp-0.6.0-py2.py3-none-any.whl
  3860. Collecting pyparsing>=2.0.2
  3861.   Downloading https://files.pythonhosted.org/packages/c0/0c/fc2e007d9a992d997f04a80125b0f183da7fb554f1de701bbb70a8e7d479/pyparsing-2.4.5-py2.py3-none-any.whl (67kB)
  3862. Collecting MarkupSafe>=0.23
  3863.   Downloading https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz
  3864. Building 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
  3966. Successfully 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
  3967. ERROR: 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.
  3968. Installing 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
  3970. Successfully 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
  3971. Requirement already satisfied: uwsgi in /usr/local/lib/python3.6/site-packages (2.0.17.1)
  3972. (1/1) Installing .rundeps (0)
  3973. OK: 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)
  3979. Executing busybox-1.26.2-r11.trigger
  3980. OK: 317 MiB in 73 packages
  3981. Removing intermediate container 28141a1d4b2a
  3982. ---> 2d825e87eee4
  3983. Step 30/37 : ADD ./docker/server/uwsgi.ini.template /opt/server
  3984. ---> 6f943748723d
  3985. Step 31/37 : ADD ./docker/server/nginx.conf.template /opt/server
  3986. ---> 648b363003c3
  3987. Step 32/37 : ADD ./docker/server/start_server.sh /opt/server
  3988. ---> 029b6e8a8c6d
  3989. Step 33/37 : ADD ./src/ /opt/code/
  3990. ---> b194201d590f
  3991. Step 34/37 : ADD environment.env /opt/code/environment.env
  3992. ---> 036a652814f6
  3993. Step 35/37 : EXPOSE 80
  3994. ---> Running in 06beaf9da1db
  3995. Removing intermediate container 06beaf9da1db
  3996. ---> 2559e219edaf
  3997. Step 36/37 : CMD ["/bin/sh", "/opt/server/start_server.sh"]
  3998. ---> Running in 2c83bfe8c606
  3999. Removing intermediate container 2c83bfe8c606
  4000. ---> a775815643c2
  4001. Step 37/37 : HEALTHCHECK CMD curl --fail http://localhost/healthcheck/
  4002. ---> Running in cf999ce24643
  4003. Removing intermediate container cf999ce24643
  4004. ---> 1c2b6e4092de
  4005. Successfully built 1c2b6e4092de
  4006. Successfully tagged getit_dev-server:latest
  4007. Creating elasticsearch-composed ... done
  4008. Creating getit_log_1            ... done
  4009. Creating getit_db_1                     ... done
  4010. Creating messages-internal-dev-composed ... done
  4011. Creating internal-cbs-dev-composed      ... done
  4012. Creating click-server-dev-composed      ... done
  4013. Creating adapult-api-composed           ... done
  4014. Creating getit-dev                      ... done
  4015. Attaching to getit-dev
  4016. getit-dev         | SETTINGS CRITICAL STARTING SERVER IN DEBUG MODE
  4017. getit-dev         | SETTINGS INFO     ALLOWED_HOSTS: ['localhost', 'server']
  4018. getit-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]
  4019. getit-dev         | Traceback (most recent call last):
  4020. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4021. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4022. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4023. getit-dev         |     raise err
  4024. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4025. getit-dev         |     sock.connect(sa)
  4026. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4027. getit-dev         |
  4028. getit-dev         | During handling of the above exception, another exception occurred:
  4029. getit-dev         |
  4030. getit-dev         | Traceback (most recent call last):
  4031. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4032. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4033. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4034. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4035. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4036. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4037. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4038. getit-dev         |     raise value
  4039. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4040. getit-dev         |     chunked=chunked,
  4041. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4042. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4043. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4044. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4045. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4046. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4047. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4048. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4049. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4050. getit-dev         |     self.send(msg)
  4051. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4052. getit-dev         |     self.connect()
  4053. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4054. getit-dev         |     conn = self._new_conn()
  4055. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4056. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4057. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c0f0cc0>: Failed to establish a new connection: [Errno 111] Connection refused
  4058. getit-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]
  4059. getit-dev         | Traceback (most recent call last):
  4060. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4061. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4062. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4063. getit-dev         |     raise err
  4064. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4065. getit-dev         |     sock.connect(sa)
  4066. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4067. getit-dev         |
  4068. getit-dev         | During handling of the above exception, another exception occurred:
  4069. getit-dev         |
  4070. getit-dev         | Traceback (most recent call last):
  4071. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4072. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4073. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4074. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4075. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4076. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4077. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4078. getit-dev         |     raise value
  4079. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4080. getit-dev         |     chunked=chunked,
  4081. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4082. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4083. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4084. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4085. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4086. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4087. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4088. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4089. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4090. getit-dev         |     self.send(msg)
  4091. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4092. getit-dev         |     self.connect()
  4093. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4094. getit-dev         |     conn = self._new_conn()
  4095. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4096. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4097. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c0f0ef0>: Failed to establish a new connection: [Errno 111] Connection refused
  4098. getit-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]
  4099. getit-dev         | Traceback (most recent call last):
  4100. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4101. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4102. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4103. getit-dev         |     raise err
  4104. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4105. getit-dev         |     sock.connect(sa)
  4106. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4107. getit-dev         |
  4108. getit-dev         | During handling of the above exception, another exception occurred:
  4109. getit-dev         |
  4110. getit-dev         | Traceback (most recent call last):
  4111. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4112. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4113. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4114. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4115. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4116. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4117. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4118. getit-dev         |     raise value
  4119. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4120. getit-dev         |     chunked=chunked,
  4121. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4122. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4123. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4124. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4125. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4126. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4127. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4128. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4129. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4130. getit-dev         |     self.send(msg)
  4131. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4132. getit-dev         |     self.connect()
  4133. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4134. getit-dev         |     conn = self._new_conn()
  4135. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4136. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4137. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c951048>: Failed to establish a new connection: [Errno 111] Connection refused
  4138. getit-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]
  4139. getit-dev         | Traceback (most recent call last):
  4140. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4141. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4142. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4143. getit-dev         |     raise err
  4144. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4145. getit-dev         |     sock.connect(sa)
  4146. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4147. getit-dev         |
  4148. getit-dev         | During handling of the above exception, another exception occurred:
  4149. getit-dev         |
  4150. getit-dev         | Traceback (most recent call last):
  4151. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4152. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4153. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4154. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4155. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4156. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4157. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4158. getit-dev         |     raise value
  4159. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4160. getit-dev         |     chunked=chunked,
  4161. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4162. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4163. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4164. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4165. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4166. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4167. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4168. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4169. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4170. getit-dev         |     self.send(msg)
  4171. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4172. getit-dev         |     self.connect()
  4173. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4174. getit-dev         |     conn = self._new_conn()
  4175. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4176. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4177. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c951358>: Failed to establish a new connection: [Errno 111] Connection refused
  4178. getit-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)
  4179. getit-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]
  4180. getit-dev         | Traceback (most recent call last):
  4181. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4182. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4183. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4184. getit-dev         |     raise err
  4185. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4186. getit-dev         |     sock.connect(sa)
  4187. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4188. getit-dev         |
  4189. getit-dev         | During handling of the above exception, another exception occurred:
  4190. getit-dev         |
  4191. getit-dev         | Traceback (most recent call last):
  4192. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4193. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4194. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4195. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4196. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4197. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4198. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4199. getit-dev         |     raise value
  4200. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4201. getit-dev         |     chunked=chunked,
  4202. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4203. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4204. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4205. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4206. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4207. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4208. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4209. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4210. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4211. getit-dev         |     self.send(msg)
  4212. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4213. getit-dev         |     self.connect()
  4214. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4215. getit-dev         |     conn = self._new_conn()
  4216. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4217. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4218. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199898>: Failed to establish a new connection: [Errno 111] Connection refused
  4219. getit-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]
  4220. getit-dev         | Traceback (most recent call last):
  4221. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4222. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4223. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4224. getit-dev         |     raise err
  4225. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4226. getit-dev         |     sock.connect(sa)
  4227. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4228. getit-dev         |
  4229. getit-dev         | During handling of the above exception, another exception occurred:
  4230. getit-dev         |
  4231. getit-dev         | Traceback (most recent call last):
  4232. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4233. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4234. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4235. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4236. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4237. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4238. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4239. getit-dev         |     raise value
  4240. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4241. getit-dev         |     chunked=chunked,
  4242. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4243. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4244. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4245. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4246. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4247. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4248. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4249. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4250. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4251. getit-dev         |     self.send(msg)
  4252. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4253. getit-dev         |     self.connect()
  4254. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4255. getit-dev         |     conn = self._new_conn()
  4256. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4257. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4258. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199940>: Failed to establish a new connection: [Errno 111] Connection refused
  4259. getit-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]
  4260. getit-dev         | Traceback (most recent call last):
  4261. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4262. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4263. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4264. getit-dev         |     raise err
  4265. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4266. getit-dev         |     sock.connect(sa)
  4267. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4268. getit-dev         |
  4269. getit-dev         | During handling of the above exception, another exception occurred:
  4270. getit-dev         |
  4271. getit-dev         | Traceback (most recent call last):
  4272. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4273. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4274. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4275. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4276. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4277. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4278. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4279. getit-dev         |     raise value
  4280. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4281. getit-dev         |     chunked=chunked,
  4282. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4283. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4284. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4285. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4286. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4287. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4288. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4289. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4290. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4291. getit-dev         |     self.send(msg)
  4292. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4293. getit-dev         |     self.connect()
  4294. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4295. getit-dev         |     conn = self._new_conn()
  4296. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4297. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4298. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199a20>: Failed to establish a new connection: [Errno 111] Connection refused
  4299. getit-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]
  4300. getit-dev         | Traceback (most recent call last):
  4301. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4302. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4303. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4304. getit-dev         |     raise err
  4305. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4306. getit-dev         |     sock.connect(sa)
  4307. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4308. getit-dev         |
  4309. getit-dev         | During handling of the above exception, another exception occurred:
  4310. getit-dev         |
  4311. getit-dev         | Traceback (most recent call last):
  4312. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4313. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4314. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4315. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4316. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4317. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4318. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4319. getit-dev         |     raise value
  4320. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4321. getit-dev         |     chunked=chunked,
  4322. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4323. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4324. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4325. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4326. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4327. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4328. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4329. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4330. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4331. getit-dev         |     self.send(msg)
  4332. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4333. getit-dev         |     self.connect()
  4334. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4335. getit-dev         |     conn = self._new_conn()
  4336. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4337. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4338. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c199b00>: Failed to establish a new connection: [Errno 111] Connection refused
  4339. getit-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)
  4340. getit-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]
  4341. getit-dev         | Traceback (most recent call last):
  4342. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4343. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4344. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4345. getit-dev         |     raise err
  4346. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4347. getit-dev         |     sock.connect(sa)
  4348. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4349. getit-dev         |
  4350. getit-dev         | During handling of the above exception, another exception occurred:
  4351. getit-dev         |
  4352. getit-dev         | Traceback (most recent call last):
  4353. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4354. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4355. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4356. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4357. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4358. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4359. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4360. getit-dev         |     raise value
  4361. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4362. getit-dev         |     chunked=chunked,
  4363. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4364. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4365. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4366. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4367. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4368. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4369. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4370. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4371. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4372. getit-dev         |     self.send(msg)
  4373. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4374. getit-dev         |     self.connect()
  4375. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4376. getit-dev         |     conn = self._new_conn()
  4377. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4378. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4379. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132390>: Failed to establish a new connection: [Errno 111] Connection refused
  4380. getit-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]
  4381. getit-dev         | Traceback (most recent call last):
  4382. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4383. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4384. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4385. getit-dev         |     raise err
  4386. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4387. getit-dev         |     sock.connect(sa)
  4388. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4389. getit-dev         |
  4390. getit-dev         | During handling of the above exception, another exception occurred:
  4391. getit-dev         |
  4392. getit-dev         | Traceback (most recent call last):
  4393. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4394. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4395. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4396. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4397. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4398. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4399. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4400. getit-dev         |     raise value
  4401. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4402. getit-dev         |     chunked=chunked,
  4403. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4404. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4405. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4406. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4407. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4408. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4409. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4410. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4411. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4412. getit-dev         |     self.send(msg)
  4413. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4414. getit-dev         |     self.connect()
  4415. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4416. getit-dev         |     conn = self._new_conn()
  4417. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4418. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4419. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132470>: Failed to establish a new connection: [Errno 111] Connection refused
  4420. getit-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]
  4421. getit-dev         | Traceback (most recent call last):
  4422. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4423. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4424. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4425. getit-dev         |     raise err
  4426. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4427. getit-dev         |     sock.connect(sa)
  4428. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4429. getit-dev         |
  4430. getit-dev         | During handling of the above exception, another exception occurred:
  4431. getit-dev         |
  4432. getit-dev         | Traceback (most recent call last):
  4433. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4434. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4435. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4436. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4437. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4438. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4439. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4440. getit-dev         |     raise value
  4441. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4442. getit-dev         |     chunked=chunked,
  4443. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4444. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4445. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4446. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4447. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4448. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4449. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4450. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4451. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4452. getit-dev         |     self.send(msg)
  4453. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4454. getit-dev         |     self.connect()
  4455. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4456. getit-dev         |     conn = self._new_conn()
  4457. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4458. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4459. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132550>: Failed to establish a new connection: [Errno 111] Connection refused
  4460. getit-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]
  4461. getit-dev         | Traceback (most recent call last):
  4462. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 157, in _new_conn
  4463. getit-dev         |     (self._dns_host, self.port), self.timeout, **extra_kw
  4464. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 84, in create_connection
  4465. getit-dev         |     raise err
  4466. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/connection.py", line 74, in create_connection
  4467. getit-dev         |     sock.connect(sa)
  4468. getit-dev         | ConnectionRefusedError: [Errno 111] Connection refused
  4469. getit-dev         |
  4470. getit-dev         | During handling of the above exception, another exception occurred:
  4471. getit-dev         |
  4472. getit-dev         | Traceback (most recent call last):
  4473. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/elasticsearch/connection/http_urllib3.py", line 217, in perform_request
  4474. getit-dev         |     method, url, body, retries=Retry(False), headers=request_headers, **kw
  4475. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 720, in urlopen
  4476. getit-dev         |     method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  4477. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/util/retry.py", line 376, in increment
  4478. getit-dev         |     raise six.reraise(type(error), error, _stacktrace)
  4479. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/packages/six.py", line 735, in reraise
  4480. getit-dev         |     raise value
  4481. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 672, in urlopen
  4482. getit-dev         |     chunked=chunked,
  4483. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connectionpool.py", line 387, in _make_request
  4484. getit-dev         |     conn.request(method, url, **httplib_request_kw)
  4485. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1239, in request
  4486. getit-dev         |     self._send_request(method, url, body, headers, encode_chunked)
  4487. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1285, in _send_request
  4488. getit-dev         |     self.endheaders(body, encode_chunked=encode_chunked)
  4489. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1234, in endheaders
  4490. getit-dev         |     self._send_output(message_body, encode_chunked=encode_chunked)
  4491. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 1026, in _send_output
  4492. getit-dev         |     self.send(msg)
  4493. getit-dev         |   File "/usr/local/lib/python3.6/http/client.py", line 964, in send
  4494. getit-dev         |     self.connect()
  4495. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 184, in connect
  4496. getit-dev         |     conn = self._new_conn()
  4497. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/urllib3/connection.py", line 169, in _new_conn
  4498. getit-dev         |     self, "Failed to establish a new connection: %s" % e
  4499. getit-dev         | urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7eff9c132630>: Failed to establish a new connection: [Errno 111] Connection refused
  4500. getit-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)
  4501. getit-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
  4502. getit-dev         | Traceback (most recent call last):
  4503. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 36, in autodetect
  4504. getit-dev         |     from google.appengine.api import memcache
  4505. getit-dev         | ModuleNotFoundError: No module named 'google.appengine'
  4506. getit-dev         |
  4507. getit-dev         | During handling of the above exception, another exception occurred:
  4508. getit-dev         |
  4509. getit-dev         | Traceback (most recent call last):
  4510. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 33, in <module>
  4511. getit-dev         |     from oauth2client.contrib.locked_file import LockedFile
  4512. getit-dev         | ModuleNotFoundError: No module named 'oauth2client.contrib.locked_file'
  4513. getit-dev         |
  4514. getit-dev         | During handling of the above exception, another exception occurred:
  4515. getit-dev         |
  4516. getit-dev         | Traceback (most recent call last):
  4517. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 37, in <module>
  4518. getit-dev         |     from oauth2client.locked_file import LockedFile
  4519. getit-dev         | ModuleNotFoundError: No module named 'oauth2client.locked_file'
  4520. getit-dev         |
  4521. getit-dev         | During handling of the above exception, another exception occurred:
  4522. getit-dev         |
  4523. getit-dev         | Traceback (most recent call last):
  4524. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 41, in autodetect
  4525. getit-dev         |     from . import file_cache
  4526. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 41, in <module>
  4527. getit-dev         |     'file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth')
  4528. getit-dev         | ImportError: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
  4529. getit-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
  4530. getit-dev         | Operations to perform:
  4531. getit-dev         |   Apply all migrations: admin, auth, categories, contenttypes, getit, identity, oauth2_provider, sessions, taggit
  4532. getit-dev         | Running pre-migrate handlers for application admin
  4533. getit-dev         | Running pre-migrate handlers for application auth
  4534. getit-dev         | Running pre-migrate handlers for application contenttypes
  4535. getit-dev         | Running pre-migrate handlers for application sessions
  4536. getit-dev         | Running pre-migrate handlers for application oauth2_provider
  4537. getit-dev         | Running pre-migrate handlers for application corsheaders
  4538. getit-dev         | Running pre-migrate handlers for application taggit
  4539. getit-dev         | Running pre-migrate handlers for application permission
  4540. getit-dev         | Running pre-migrate handlers for application categories
  4541. getit-dev         | Running pre-migrate handlers for application editor
  4542. getit-dev         | Running pre-migrate handlers for application django_filters
  4543. getit-dev         | Running pre-migrate handlers for application simple_history
  4544. getit-dev         | Running pre-migrate handlers for application identity
  4545. getit-dev         | Running pre-migrate handlers for application getit
  4546. getit-dev         | Running pre-migrate handlers for application imagekit
  4547. getit-dev         | Running migrations:
  4548. getit-dev         |   Applying contenttypes.0001_initial... OK (0.093s)
  4549. getit-dev         |   Applying auth.0001_initial... OK (0.361s)
  4550. getit-dev         |   Applying admin.0001_initial... OK (0.113s)
  4551. getit-dev         |   Applying admin.0002_logentry_remove_auto_add... OK (0.033s)
  4552. getit-dev         |   Applying admin.0003_logentry_add_action_flag_choices... OK (0.031s)
  4553. getit-dev         |   Applying contenttypes.0002_remove_content_type_name... OK (0.101s)
  4554. getit-dev         |   Applying auth.0002_alter_permission_name_max_length... OK (0.031s)
  4555. getit-dev         |   Applying auth.0003_alter_user_email_max_length... OK (0.045s)
  4556. getit-dev         |   Applying auth.0004_alter_user_username_opts... OK (0.034s)
  4557. getit-dev         |   Applying auth.0005_alter_user_last_login_null... OK (0.048s)
  4558. getit-dev         |   Applying auth.0006_require_contenttypes_0002... OK (0.013s)
  4559. getit-dev         |   Applying auth.0007_alter_validators_add_error_messages... OK (0.035s)
  4560. getit-dev         |   Applying auth.0008_alter_user_username_max_length... OK (0.073s)
  4561. getit-dev         |   Applying auth.0009_alter_user_last_name_max_length... OK (0.041s)
  4562. getit-dev         |   Applying categories.0001_initial... OK (0.227s)
  4563. getit-dev         |   Applying categories.0002_auto_20170217_1111... OK (0.036s)
  4564. getit-dev         |   Applying sessions.0001_initial... OK (0.077s)
  4565. getit-dev         |   Applying getit.0001_initial... OK (0.156s)
  4566. getit-dev         |   Applying getit.0002_auto_20171101_2100... OK (0.029s)
  4567. getit-dev         |   Applying getit.0003_auto_20171102_1806... OK (0.171s)
  4568. getit-dev         |   Applying getit.0004_auto_20171103_2113... OK (0.128s)
  4569. getit-dev         |   Applying getit.0005_auto_20171103_2204... OK (0.209s)
  4570. getit-dev         |   Applying getit.0006_auto_20171103_2217... OK (0.124s)
  4571. getit-dev         |   Applying getit.0007_auto_20171104_1821... OK (0.132s)
  4572. getit-dev         |   Applying getit.0008_auto_20171107_0024... OK (0.300s)
  4573. getit-dev         |   Applying getit.0009_auto_20171107_1727... OK (0.508s)
  4574. getit-dev         |   Applying getit.0010_auto_20171114_1823... OK (0.103s)
  4575. getit-dev         |   Applying getit.0011_auto_20171127_1835... OK (1.733s)
  4576. getit-dev         |   Applying getit.0012_auto_20171129_2356... OK (0.219s)
  4577. getit-dev         |   Applying getit.0013_auto_20171201_1956... OK (1.038s)
  4578. getit-dev         |   Applying getit.0014_auto_20171205_1748... OK (0.104s)
  4579. getit-dev         |   Applying getit.0015_auto_20171213_1702... OK (0.724s)
  4580. getit-dev         |   Applying getit.0016_auto_20171226_2201... OK (0.429s)
  4581. getit-dev         |   Applying getit.0017_business_profile_picture... OK (0.231s)
  4582. getit-dev         |   Applying getit.0018_forumpost... OK (0.493s)
  4583. getit-dev         |   Applying getit.0019_forumpost_replies... OK (0.255s)
  4584. getit-dev         |   Applying getit.0020_historicalbusiness_historicaleventfields_historicalforumpost_historicalhousingfields_historicaljobfi... OK (2.456s)
  4585. getit-dev         |   Applying getit.0020_eventfields_performer... OK (0.340s)
  4586. getit-dev         |   Applying getit.0021_auto_20180111_2334... OK (0.763s)
  4587. getit-dev         |   Applying getit.0022_auto_20180120_0010... OK (0.685s)
  4588. getit-dev         |   Applying getit.0023_auto_20180305_2148... OK (1.502s)
  4589. getit-dev         |   Applying getit.0024_auto_20180312_1730... OK (1.180s)
  4590. getit-dev         |   Applying getit.0015_auto_20171208_2044... OK (0.306s)
  4591. getit-dev         |   Applying getit.0016_auto_20171208_2044... OK (0.147s)
  4592. getit-dev         |   Applying getit.0017_auto_20171208_2044... OK (0.127s)
  4593. getit-dev         |   Applying getit.0018_historicalmessage_reference... OK (0.241s)
  4594. getit-dev         |   Applying getit.0025_merge_20180313_1906... OK (0.011s)
  4595. getit-dev         |   Applying getit.0026_auto_20180314_2353... OK (0.029s)
  4596. getit-dev         |   Applying getit.0027_auto_20180315_1604... OK (0.195s)
  4597. getit-dev         |   Applying getit.0028_auto_20180315_1855... OK (0.733s)
  4598. getit-dev         |   Applying getit.0029_auto_20180316_2035... OK (1.151s)
  4599. getit-dev         |   Applying getit.0030_auto_20180403_0025... OK (2.196s)
  4600. getit-dev         |   Applying getit.0031_auto_20180403_1807... OK (0.256s)
  4601. getit-dev         |   Applying getit.0032_auto_20180409_1746... OK (0.505s)
  4602. getit-dev         |   Applying getit.0033_auto_20180410_1639... OK (0.574s)
  4603. getit-dev         |   Applying getit.0034_auto_20180410_1649... OK (1.364s)
  4604. getit-dev         |   Applying getit.0035_auto_20180413_1701... OK (3.838s)
  4605. getit-dev         |   Applying getit.0036_auto_20180413_1758... OK (0.325s)
  4606. getit-dev         |   Applying getit.0037_auto_20180413_1804... OK (10.112s)
  4607. getit-dev         |   Applying getit.0038_auto_20180416_1757... OK (0.656s)
  4608. getit-dev         |   Applying getit.0039_auto_20180416_2000... OK (1.076s)
  4609. getit-dev         |   Applying getit.0040_auto_20180426_2129... OK (0.572s)
  4610. getit-dev         |   Applying getit.0041_auto_20180507_1724... OK (6.711s)
  4611. getit-dev         |   Applying getit.0042_auto_20180508_2317... OK (1.816s)
  4612. getit-dev         |   Applying getit.0043_auto_20180618_1817... OK (0.363s)
  4613. getit-dev         |   Applying getit.0043_auto_20180530_2119... OK (0.935s)
  4614. getit-dev         |   Applying getit.0044_merge_20180627_1629... OK (0.011s)
  4615. getit-dev         |   Applying getit.0045_auto_20180802_1835... OK (1.845s)
  4616. getit-dev         |   Applying getit.0046_auto_20180814_1830... OK (0.395s)
  4617. getit-dev         |   Applying getit.0045_auto_20180828_2128... OK (0.445s)
  4618. getit-dev         |   Applying getit.0047_merge_20180829_2103... OK (0.012s)
  4619. getit-dev         |   Applying getit.0048_auto_20181025_2106... OK (0.405s)
  4620. getit-dev         |   Applying getit.0049_auto_20181116_1925... OK (0.238s)
  4621. getit-dev         |   Applying getit.0050_auto_20181203_2149... OK (16.642s)
  4622. getit-dev         |   Applying getit.0051_auto_20181204_2106... OK (7.487s)
  4623. getit-dev         |   Applying getit.0052_auto_20181205_0126... OK (0.619s)
  4624. getit-dev         |   Applying getit.0053_auto_20181207_2309... OK (2.434s)
  4625. getit-dev         |   Applying getit.0054_auto_20181207_2324... OK (0.598s)
  4626. getit-dev         |   Applying getit.0055_auto_20190125_0001... OK (0.768s)
  4627. getit-dev         |   Applying getit.0056_auto_20190301_2304... OK (1.502s)
  4628. getit-dev         |   Applying getit.0057_auto_20190302_0016... OK (2.218s)
  4629. getit-dev         |   Applying getit.0058_auto_20190304_1902... OK (2.270s)
  4630. getit-dev         |   Applying getit.0056_auto_20190304_2232... OK (0.963s)
  4631. getit-dev         |   Applying getit.0059_merge_20190305_2111... OK (0.014s)
  4632. getit-dev         |   Applying getit.0060_auto_20190320_2219... OK (0.640s)
  4633. getit-dev         |   Applying getit.0061_auto_20190325_2036... OK (1.556s)
  4634. getit-dev         |   Applying getit.0062_auto_20190325_2200... OK (1.421s)
  4635. getit-dev         |   Applying getit.0063_auto_20190425_2040... OK (1.365s)
  4636. getit-dev         |   Applying getit.0064_auto_20190502_1754... OK (1.777s)
  4637. getit-dev         |   Applying getit.0065_auto_20190513_2013... OK (2.985s)
  4638. getit-dev         |   Applying getit.0066_auto_20190607_1811... OK (1.698s)
  4639. getit-dev         |   Applying getit.0067_auto_20190711_2010... OK (0.895s)
  4640. getit-dev         |   Applying getit.0068_auto_20190715_1739... OK (3.778s)
  4641. getit-dev         |   Applying getit.0069_auto_20190715_2047... OK (33.354s)
  4642. getit-dev         |   Applying getit.0070_auto_20190715_2107... OK (2.592s)
  4643. getit-dev         |   Applying getit.0071_auto_20190715_2117... OK (55.815s)
  4644. getit-dev         |   Applying getit.0072_auto_20190716_1816... OK (15.486s)
  4645. getit-dev         |   Applying getit.0073_auto_20190717_1744... OK (7.643s)
  4646. getit-dev         |   Applying getit.0074_auto_20190723_2215... OK (2.045s)
  4647. getit-dev         |   Applying getit.0075_auto_20190813_1801... OK (4.706s)
  4648. getit-dev         |   Applying getit.0076_auto_20190814_2052... OK (5.394s)
  4649. getit-dev         |   Applying getit.0077_auto_20190815_2014... OK (3.800s)
  4650. getit-dev         |   Applying getit.0078_auto_20190820_1426... OK (6.098s)
  4651. getit-dev         |   Applying getit.0079_auto_20190822_2017... OK (0.786s)
  4652. getit-dev         |   Applying getit.0080_auto_20190826_2331... OK (2.868s)
  4653. getit-dev         |   Applying getit.0081_auto_20190827_1937... OK (5.871s)
  4654. getit-dev         |   Applying getit.0082_creditcard_fingerprint... OK (0.630s)
  4655. getit-dev         |   Applying getit.0083_auto_20190903_1914... OK (2.094s)
  4656. getit-dev         |   Applying getit.0082_auto_20190905_1626... OK (1.423s)
  4657. getit-dev         |   Applying getit.0084_merge_20190906_1656... OK (0.014s)
  4658. getit-dev         |   Applying getit.0085_auto_20190906_1714... OK (2.611s)
  4659. getit-dev         |   Applying getit.0086_auto_20190923_1506... OK (2.692s)
  4660. getit-dev         |   Applying getit.0087_auto_20190923_2154... OK (0.667s)
  4661. getit-dev         |   Applying getit.0088_auto_20190923_2210... OK (1.326s)
  4662. getit-dev         |   Applying getit.0089_auto_20191003_2126... OK (2.389s)
  4663. getit-dev         |   Applying getit.0090_sitemapcity... OK (0.886s)
  4664. getit-dev         |   Applying getit.0091_auto_20191007_2129... OK (5.005s)
  4665. getit-dev         |   Applying getit.0092_auto_20191025_1232... OK (3.372s)
  4666. getit-dev         |   Applying getit.0093_auto_20191029_0747... OK (9.117s)
  4667. getit-dev         |   Applying getit.0094_auto_20191101_1514... OK (2.850s)
  4668. getit-dev         |   Applying identity.0001_initial... OK (0.709s)
  4669. getit-dev         |   Applying identity.0002_authentication... OK (0.654s)
  4670. getit-dev         |   Applying oauth2_provider.0001_initial... OK (2.768s)
  4671. getit-dev         |   Applying oauth2_provider.0002_08_updates... OK (2.285s)
  4672. getit-dev         |   Applying oauth2_provider.0003_auto_20160316_1503... OK (0.655s)
  4673. getit-dev         |   Applying oauth2_provider.0004_auto_20160525_1623... OK (1.490s)
  4674. getit-dev         |   Applying oauth2_provider.0005_auto_20170514_1141... OK (11.329s)
  4675. getit-dev         |   Applying taggit.0001_initial... OK (0.986s)
  4676. getit-dev         |   Applying taggit.0002_auto_20150616_2121... OK (0.176s)
  4677. getit-dev         | Running post-migrate handlers for application admin
  4678. getit-dev         | Adding permission 'Permission object (1)'
  4679. getit-dev         | Adding permission 'Permission object (2)'
  4680. getit-dev         | Adding permission 'Permission object (3)'
  4681. getit-dev         | Adding permission 'Permission object (4)'
  4682. getit-dev         | Running post-migrate handlers for application auth
  4683. getit-dev         | Adding permission 'Permission object (5)'
  4684. getit-dev         | Adding permission 'Permission object (6)'
  4685. getit-dev         | Adding permission 'Permission object (7)'
  4686. getit-dev         | Adding permission 'Permission object (8)'
  4687. getit-dev         | Adding permission 'Permission object (9)'
  4688. getit-dev         | Adding permission 'Permission object (10)'
  4689. getit-dev         | Adding permission 'Permission object (11)'
  4690. getit-dev         | Adding permission 'Permission object (12)'
  4691. getit-dev         | Adding permission 'Permission object (13)'
  4692. getit-dev         | Adding permission 'Permission object (14)'
  4693. getit-dev         | Adding permission 'Permission object (15)'
  4694. getit-dev         | Adding permission 'Permission object (16)'
  4695. getit-dev         | Running post-migrate handlers for application contenttypes
  4696. getit-dev         | Adding permission 'Permission object (17)'
  4697. getit-dev         | Adding permission 'Permission object (18)'
  4698. getit-dev         | Adding permission 'Permission object (19)'
  4699. getit-dev         | Adding permission 'Permission object (20)'
  4700. getit-dev         | Running post-migrate handlers for application sessions
  4701. getit-dev         | Adding permission 'Permission object (21)'
  4702. getit-dev         | Adding permission 'Permission object (22)'
  4703. getit-dev         | Adding permission 'Permission object (23)'
  4704. getit-dev         | Adding permission 'Permission object (24)'
  4705. getit-dev         | Running post-migrate handlers for application oauth2_provider
  4706. getit-dev         | Adding permission 'Permission object (25)'
  4707. getit-dev         | Adding permission 'Permission object (26)'
  4708. getit-dev         | Adding permission 'Permission object (27)'
  4709. getit-dev         | Adding permission 'Permission object (28)'
  4710. getit-dev         | Adding permission 'Permission object (29)'
  4711. getit-dev         | Adding permission 'Permission object (30)'
  4712. getit-dev         | Adding permission 'Permission object (31)'
  4713. getit-dev         | Adding permission 'Permission object (32)'
  4714. getit-dev         | Adding permission 'Permission object (33)'
  4715. getit-dev         | Adding permission 'Permission object (34)'
  4716. getit-dev         | Adding permission 'Permission object (35)'
  4717. getit-dev         | Adding permission 'Permission object (36)'
  4718. getit-dev         | Adding permission 'Permission object (37)'
  4719. getit-dev         | Adding permission 'Permission object (38)'
  4720. getit-dev         | Adding permission 'Permission object (39)'
  4721. getit-dev         | Adding permission 'Permission object (40)'
  4722. getit-dev         | Running post-migrate handlers for application corsheaders
  4723. getit-dev         | Running post-migrate handlers for application taggit
  4724. getit-dev         | Adding permission 'Permission object (41)'
  4725. getit-dev         | Adding permission 'Permission object (42)'
  4726. getit-dev         | Adding permission 'Permission object (43)'
  4727. getit-dev         | Adding permission 'Permission object (44)'
  4728. getit-dev         | Adding permission 'Permission object (45)'
  4729. getit-dev         | Adding permission 'Permission object (46)'
  4730. getit-dev         | Adding permission 'Permission object (47)'
  4731. getit-dev         | Adding permission 'Permission object (48)'
  4732. getit-dev         | Running post-migrate handlers for application permission
  4733. getit-dev         | Running post-migrate handlers for application categories
  4734. getit-dev         | Adding permission 'Permission object (49)'
  4735. getit-dev         | Adding permission 'Permission object (50)'
  4736. getit-dev         | Adding permission 'Permission object (51)'
  4737. getit-dev         | Adding permission 'Permission object (52)'
  4738. getit-dev         | Adding permission 'Permission object (53)'
  4739. getit-dev         | Adding permission 'Permission object (54)'
  4740. getit-dev         | Adding permission 'Permission object (55)'
  4741. getit-dev         | Adding permission 'Permission object (56)'
  4742. getit-dev         | Running post-migrate handlers for application editor
  4743. getit-dev         | Running post-migrate handlers for application django_filters
  4744. getit-dev         | Running post-migrate handlers for application simple_history
  4745. getit-dev         | Running post-migrate handlers for application identity
  4746. getit-dev         | Adding permission 'Permission object (57)'
  4747. getit-dev         | Adding permission 'Permission object (58)'
  4748. getit-dev         | Adding permission 'Permission object (59)'
  4749. getit-dev         | Adding permission 'Permission object (60)'
  4750. getit-dev         | Adding permission 'Permission object (61)'
  4751. getit-dev         | Adding permission 'Permission object (62)'
  4752. getit-dev         | Adding permission 'Permission object (63)'
  4753. getit-dev         | Adding permission 'Permission object (64)'
  4754. getit-dev         | Running post-migrate handlers for application getit
  4755. getit-dev         | Adding permission 'Permission object (65)'
  4756. getit-dev         | Adding permission 'Permission object (66)'
  4757. getit-dev         | Adding permission 'Permission object (67)'
  4758. getit-dev         | Adding permission 'Permission object (68)'
  4759. getit-dev         | Adding permission 'Permission object (69)'
  4760. getit-dev         | Adding permission 'Permission object (70)'
  4761. getit-dev         | Adding permission 'Permission object (71)'
  4762. getit-dev         | Adding permission 'Permission object (72)'
  4763. getit-dev         | Adding permission 'Permission object (73)'
  4764. getit-dev         | Adding permission 'Permission object (74)'
  4765. getit-dev         | Adding permission 'Permission object (75)'
  4766. getit-dev         | Adding permission 'Permission object (76)'
  4767. getit-dev         | Adding permission 'Permission object (77)'
  4768. getit-dev         | Adding permission 'Permission object (78)'
  4769. getit-dev         | Adding permission 'Permission object (79)'
  4770. getit-dev         | Adding permission 'Permission object (80)'
  4771. getit-dev         | Adding permission 'Permission object (81)'
  4772. getit-dev         | Adding permission 'Permission object (82)'
  4773. getit-dev         | Adding permission 'Permission object (83)'
  4774. getit-dev         | Adding permission 'Permission object (84)'
  4775. getit-dev         | Adding permission 'Permission object (85)'
  4776. getit-dev         | Adding permission 'Permission object (86)'
  4777. getit-dev         | Adding permission 'Permission object (87)'
  4778. getit-dev         | Adding permission 'Permission object (88)'
  4779. getit-dev         | Adding permission 'Permission object (89)'
  4780. getit-dev         | Adding permission 'Permission object (90)'
  4781. getit-dev         | Adding permission 'Permission object (91)'
  4782. getit-dev         | Adding permission 'Permission object (92)'
  4783. getit-dev         | Adding permission 'Permission object (93)'
  4784. getit-dev         | Adding permission 'Permission object (94)'
  4785. getit-dev         | Adding permission 'Permission object (95)'
  4786. getit-dev         | Adding permission 'Permission object (96)'
  4787. getit-dev         | Adding permission 'Permission object (97)'
  4788. getit-dev         | Adding permission 'Permission object (98)'
  4789. getit-dev         | Adding permission 'Permission object (99)'
  4790. getit-dev         | Adding permission 'Permission object (100)'
  4791. getit-dev         | Adding permission 'Permission object (101)'
  4792. getit-dev         | Adding permission 'Permission object (102)'
  4793. getit-dev         | Adding permission 'Permission object (103)'
  4794. getit-dev         | Adding permission 'Permission object (104)'
  4795. getit-dev         | Adding permission 'Permission object (105)'
  4796. getit-dev         | Adding permission 'Permission object (106)'
  4797. getit-dev         | Adding permission 'Permission object (107)'
  4798. getit-dev         | Adding permission 'Permission object (108)'
  4799. getit-dev         | Adding permission 'Permission object (109)'
  4800. getit-dev         | Adding permission 'Permission object (110)'
  4801. getit-dev         | Adding permission 'Permission object (111)'
  4802. getit-dev         | Adding permission 'Permission object (112)'
  4803. getit-dev         | Adding permission 'Permission object (113)'
  4804. getit-dev         | Adding permission 'Permission object (114)'
  4805. getit-dev         | Adding permission 'Permission object (115)'
  4806. getit-dev         | Adding permission 'Permission object (116)'
  4807. getit-dev         | Adding permission 'Permission object (117)'
  4808. getit-dev         | Adding permission 'Permission object (118)'
  4809. getit-dev         | Adding permission 'Permission object (119)'
  4810. getit-dev         | Adding permission 'Permission object (120)'
  4811. getit-dev         | Adding permission 'Permission object (121)'
  4812. getit-dev         | Adding permission 'Permission object (122)'
  4813. getit-dev         | Adding permission 'Permission object (123)'
  4814. getit-dev         | Adding permission 'Permission object (124)'
  4815. getit-dev         | Adding permission 'Permission object (125)'
  4816. getit-dev         | Adding permission 'Permission object (126)'
  4817. getit-dev         | Adding permission 'Permission object (127)'
  4818. getit-dev         | Adding permission 'Permission object (128)'
  4819. getit-dev         | Adding permission 'Permission object (129)'
  4820. getit-dev         | Adding permission 'Permission object (130)'
  4821. getit-dev         | Adding permission 'Permission object (131)'
  4822. getit-dev         | Adding permission 'Permission object (132)'
  4823. getit-dev         | Adding permission 'Permission object (133)'
  4824. getit-dev         | Adding permission 'Permission object (134)'
  4825. getit-dev         | Adding permission 'Permission object (135)'
  4826. getit-dev         | Adding permission 'Permission object (136)'
  4827. getit-dev         | Adding permission 'Permission object (137)'
  4828. getit-dev         | Adding permission 'Permission object (138)'
  4829. getit-dev         | Adding permission 'Permission object (139)'
  4830. getit-dev         | Adding permission 'Permission object (140)'
  4831. getit-dev         | Adding permission 'Permission object (141)'
  4832. getit-dev         | Adding permission 'Permission object (142)'
  4833. getit-dev         | Adding permission 'Permission object (143)'
  4834. getit-dev         | Adding permission 'Permission object (144)'
  4835. getit-dev         | Adding permission 'Permission object (145)'
  4836. getit-dev         | Adding permission 'Permission object (146)'
  4837. getit-dev         | Adding permission 'Permission object (147)'
  4838. getit-dev         | Adding permission 'Permission object (148)'
  4839. getit-dev         | Adding permission 'Permission object (149)'
  4840. getit-dev         | Adding permission 'Permission object (150)'
  4841. getit-dev         | Adding permission 'Permission object (151)'
  4842. getit-dev         | Adding permission 'Permission object (152)'
  4843. getit-dev         | Adding permission 'Permission object (153)'
  4844. getit-dev         | Adding permission 'Permission object (154)'
  4845. getit-dev         | Adding permission 'Permission object (155)'
  4846. getit-dev         | Adding permission 'Permission object (156)'
  4847. getit-dev         | Adding permission 'Permission object (157)'
  4848. getit-dev         | Adding permission 'Permission object (158)'
  4849. getit-dev         | Adding permission 'Permission object (159)'
  4850. getit-dev         | Adding permission 'Permission object (160)'
  4851. getit-dev         | Adding permission 'Permission object (161)'
  4852. getit-dev         | Adding permission 'Permission object (162)'
  4853. getit-dev         | Adding permission 'Permission object (163)'
  4854. getit-dev         | Adding permission 'Permission object (164)'
  4855. getit-dev         | Adding permission 'Permission object (165)'
  4856. getit-dev         | Adding permission 'Permission object (166)'
  4857. getit-dev         | Adding permission 'Permission object (167)'
  4858. getit-dev         | Adding permission 'Permission object (168)'
  4859. getit-dev         | Adding permission 'Permission object (169)'
  4860. getit-dev         | Adding permission 'Permission object (170)'
  4861. getit-dev         | Adding permission 'Permission object (171)'
  4862. getit-dev         | Adding permission 'Permission object (172)'
  4863. getit-dev         | Adding permission 'Permission object (173)'
  4864. getit-dev         | Adding permission 'Permission object (174)'
  4865. getit-dev         | Adding permission 'Permission object (175)'
  4866. getit-dev         | Adding permission 'Permission object (176)'
  4867. getit-dev         | Adding permission 'Permission object (177)'
  4868. getit-dev         | Adding permission 'Permission object (178)'
  4869. getit-dev         | Adding permission 'Permission object (179)'
  4870. getit-dev         | Adding permission 'Permission object (180)'
  4871. getit-dev         | Adding permission 'Permission object (181)'
  4872. getit-dev         | Adding permission 'Permission object (182)'
  4873. getit-dev         | Adding permission 'Permission object (183)'
  4874. getit-dev         | Adding permission 'Permission object (184)'
  4875. getit-dev         | Adding permission 'Permission object (185)'
  4876. getit-dev         | Adding permission 'Permission object (186)'
  4877. getit-dev         | Adding permission 'Permission object (187)'
  4878. getit-dev         | Adding permission 'Permission object (188)'
  4879. getit-dev         | Adding permission 'Permission object (189)'
  4880. getit-dev         | Adding permission 'Permission object (190)'
  4881. getit-dev         | Adding permission 'Permission object (191)'
  4882. getit-dev         | Adding permission 'Permission object (192)'
  4883. getit-dev         | Adding permission 'Permission object (193)'
  4884. getit-dev         | Adding permission 'Permission object (194)'
  4885. getit-dev         | Adding permission 'Permission object (195)'
  4886. getit-dev         | Adding permission 'Permission object (196)'
  4887. getit-dev         | Adding permission 'Permission object (197)'
  4888. getit-dev         | Adding permission 'Permission object (198)'
  4889. getit-dev         | Adding permission 'Permission object (199)'
  4890. getit-dev         | Adding permission 'Permission object (200)'
  4891. getit-dev         | Adding permission 'Permission object (201)'
  4892. getit-dev         | Adding permission 'Permission object (202)'
  4893. getit-dev         | Adding permission 'Permission object (203)'
  4894. getit-dev         | Adding permission 'Permission object (204)'
  4895. getit-dev         | Adding permission 'Permission object (205)'
  4896. getit-dev         | Adding permission 'Permission object (206)'
  4897. getit-dev         | Adding permission 'Permission object (207)'
  4898. getit-dev         | Adding permission 'Permission object (208)'
  4899. getit-dev         | Adding permission 'Permission object (209)'
  4900. getit-dev         | Adding permission 'Permission object (210)'
  4901. getit-dev         | Adding permission 'Permission object (211)'
  4902. getit-dev         | Adding permission 'Permission object (212)'
  4903. getit-dev         | Adding permission 'Permission object (213)'
  4904. getit-dev         | Adding permission 'Permission object (214)'
  4905. getit-dev         | Adding permission 'Permission object (215)'
  4906. getit-dev         | Adding permission 'Permission object (216)'
  4907. getit-dev         | Adding permission 'Permission object (217)'
  4908. getit-dev         | Adding permission 'Permission object (218)'
  4909. getit-dev         | Adding permission 'Permission object (219)'
  4910. getit-dev         | Adding permission 'Permission object (220)'
  4911. getit-dev         | Adding permission 'Permission object (221)'
  4912. getit-dev         | Adding permission 'Permission object (222)'
  4913. getit-dev         | Adding permission 'Permission object (223)'
  4914. getit-dev         | Adding permission 'Permission object (224)'
  4915. getit-dev         | Adding permission 'Permission object (225)'
  4916. getit-dev         | Adding permission 'Permission object (226)'
  4917. getit-dev         | Adding permission 'Permission object (227)'
  4918. getit-dev         | Adding permission 'Permission object (228)'
  4919. getit-dev         | Adding permission 'Permission object (229)'
  4920. getit-dev         | Adding permission 'Permission object (230)'
  4921. getit-dev         | Adding permission 'Permission object (231)'
  4922. getit-dev         | Adding permission 'Permission object (232)'
  4923. getit-dev         | Adding permission 'Permission object (233)'
  4924. getit-dev         | Adding permission 'Permission object (234)'
  4925. getit-dev         | Adding permission 'Permission object (235)'
  4926. getit-dev         | Adding permission 'Permission object (236)'
  4927. getit-dev         | Adding permission 'Permission object (237)'
  4928. getit-dev         | Adding permission 'Permission object (238)'
  4929. getit-dev         | Adding permission 'Permission object (239)'
  4930. getit-dev         | Adding permission 'Permission object (240)'
  4931. getit-dev         | Adding permission 'Permission object (241)'
  4932. getit-dev         | Adding permission 'Permission object (242)'
  4933. getit-dev         | Adding permission 'Permission object (243)'
  4934. getit-dev         | Adding permission 'Permission object (244)'
  4935. getit-dev         | Adding permission 'Permission object (245)'
  4936. getit-dev         | Adding permission 'Permission object (246)'
  4937. getit-dev         | Adding permission 'Permission object (247)'
  4938. getit-dev         | Adding permission 'Permission object (248)'
  4939. getit-dev         | Adding permission 'Permission object (249)'
  4940. getit-dev         | Adding permission 'Permission object (250)'
  4941. getit-dev         | Adding permission 'Permission object (251)'
  4942. getit-dev         | Adding permission 'Permission object (252)'
  4943. getit-dev         | Adding permission 'Permission object (253)'
  4944. getit-dev         | Adding permission 'Permission object (254)'
  4945. getit-dev         | Adding permission 'Permission object (255)'
  4946. getit-dev         | Adding permission 'Permission object (256)'
  4947. getit-dev         | Adding permission 'Permission object (257)'
  4948. getit-dev         | Adding permission 'Permission object (258)'
  4949. getit-dev         | Adding permission 'Permission object (259)'
  4950. getit-dev         | Adding permission 'Permission object (260)'
  4951. getit-dev         | Adding permission 'Permission object (261)'
  4952. getit-dev         | Adding permission 'Permission object (262)'
  4953. getit-dev         | Adding permission 'Permission object (263)'
  4954. getit-dev         | Adding permission 'Permission object (264)'
  4955. getit-dev         | Adding permission 'Permission object (265)'
  4956. getit-dev         | Adding permission 'Permission object (266)'
  4957. getit-dev         | Adding permission 'Permission object (267)'
  4958. getit-dev         | Adding permission 'Permission object (268)'
  4959. getit-dev         | Adding permission 'Permission object (269)'
  4960. getit-dev         | Adding permission 'Permission object (270)'
  4961. getit-dev         | Adding permission 'Permission object (271)'
  4962. getit-dev         | Adding permission 'Permission object (272)'
  4963. getit-dev         | Adding permission 'Permission object (273)'
  4964. getit-dev         | Adding permission 'Permission object (274)'
  4965. getit-dev         | Adding permission 'Permission object (275)'
  4966. getit-dev         | Adding permission 'Permission object (276)'
  4967. getit-dev         | Adding permission 'Permission object (277)'
  4968. getit-dev         | Adding permission 'Permission object (278)'
  4969. getit-dev         | Adding permission 'Permission object (279)'
  4970. getit-dev         | Adding permission 'Permission object (280)'
  4971. getit-dev         | Adding permission 'Permission object (281)'
  4972. getit-dev         | Adding permission 'Permission object (282)'
  4973. getit-dev         | Adding permission 'Permission object (283)'
  4974. getit-dev         | Adding permission 'Permission object (284)'
  4975. getit-dev         | Adding permission 'Permission object (285)'
  4976. getit-dev         | Adding permission 'Permission object (286)'
  4977. getit-dev         | Adding permission 'Permission object (287)'
  4978. getit-dev         | Adding permission 'Permission object (288)'
  4979. getit-dev         | Adding permission 'Permission object (289)'
  4980. getit-dev         | Adding permission 'Permission object (290)'
  4981. getit-dev         | Adding permission 'Permission object (291)'
  4982. getit-dev         | Adding permission 'Permission object (292)'
  4983. getit-dev         | Adding permission 'Permission object (293)'
  4984. getit-dev         | Adding permission 'Permission object (294)'
  4985. getit-dev         | Adding permission 'Permission object (295)'
  4986. getit-dev         | Adding permission 'Permission object (296)'
  4987. getit-dev         | Adding permission 'Permission object (297)'
  4988. getit-dev         | Adding permission 'Permission object (298)'
  4989. getit-dev         | Adding permission 'Permission object (299)'
  4990. getit-dev         | Adding permission 'Permission object (300)'
  4991. getit-dev         | Adding permission 'Permission object (301)'
  4992. getit-dev         | Adding permission 'Permission object (302)'
  4993. getit-dev         | Adding permission 'Permission object (303)'
  4994. getit-dev         | Adding permission 'Permission object (304)'
  4995. getit-dev         | Running post-migrate handlers for application imagekit
  4996. getit-dev         | SETTINGS CRITICAL STARTING SERVER IN DEBUG MODE
  4997. getit-dev         | SETTINGS INFO     ALLOWED_HOSTS: ['localhost', 'server']
  4998. getit-dev         | api: INFO     [2019-12-04 03:08:39,113] [none] elasticsearch: PUT http://elasticsearch:9200/getit-tags-index [status:200 request:5.869s]
  4999. getit-dev         | api: INFO     [2019-12-04 03:08:41,002] [none] elasticsearch: PUT http://elasticsearch:9200/getit-listing-index [status:200 request:1.831s]
  5000. getit-dev         | api: INFO     [2019-12-04 03:08:43,390] [none] elasticsearch: PUT http://elasticsearch:9200/getit-forum-index [status:200 request:1.941s]
  5001. getit-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
  5002. getit-dev         | Traceback (most recent call last):
  5003. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 36, in autodetect
  5004. getit-dev         |     from google.appengine.api import memcache
  5005. getit-dev         | ModuleNotFoundError: No module named 'google.appengine'
  5006. getit-dev         |
  5007. getit-dev         | During handling of the above exception, another exception occurred:
  5008. getit-dev         |
  5009. getit-dev         | Traceback (most recent call last):
  5010. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 33, in <module>
  5011. getit-dev         |     from oauth2client.contrib.locked_file import LockedFile
  5012. getit-dev         | ModuleNotFoundError: No module named 'oauth2client.contrib.locked_file'
  5013. getit-dev         |
  5014. getit-dev         | During handling of the above exception, another exception occurred:
  5015. getit-dev         |
  5016. getit-dev         | Traceback (most recent call last):
  5017. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 37, in <module>
  5018. getit-dev         |     from oauth2client.locked_file import LockedFile
  5019. getit-dev         | ModuleNotFoundError: No module named 'oauth2client.locked_file'
  5020. getit-dev         |
  5021. getit-dev         | During handling of the above exception, another exception occurred:
  5022. getit-dev         |
  5023. getit-dev         | Traceback (most recent call last):
  5024. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 41, in autodetect
  5025. getit-dev         |     from . import file_cache
  5026. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 41, in <module>
  5027. getit-dev         |     'file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth')
  5028. getit-dev         | ImportError: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
  5029. getit-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
  5030. getit-dev         | SETTINGS CRITICAL STARTING SERVER IN DEBUG MODE
  5031. getit-dev         | SETTINGS INFO     ALLOWED_HOSTS: ['localhost', 'server']
  5032. getit-dev         | api: INFO     [2019-12-04 03:08:55,564] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-tags-index [status:200 request:0.088s]
  5033. getit-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]
  5034. getit-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]
  5035. getit-dev         | api: INFO     [2019-12-04 03:08:55,721] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-listing-index [status:200 request:0.008s]
  5036. getit-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]
  5037. getit-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]
  5038. getit-dev         | api: INFO     [2019-12-04 03:08:56,356] [none] elasticsearch: HEAD http://elasticsearch:9200/getit-forum-index [status:200 request:0.014s]
  5039. getit-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]
  5040. getit-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]
  5041. getit-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
  5042. getit-dev         | Traceback (most recent call last):
  5043. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 36, in autodetect
  5044. getit-dev         |     from google.appengine.api import memcache
  5045. getit-dev         | ModuleNotFoundError: No module named 'google.appengine'
  5046. getit-dev         |
  5047. getit-dev         | During handling of the above exception, another exception occurred:
  5048. getit-dev         |
  5049. getit-dev         | Traceback (most recent call last):
  5050. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 33, in <module>
  5051. getit-dev         |     from oauth2client.contrib.locked_file import LockedFile
  5052. getit-dev         | ModuleNotFoundError: No module named 'oauth2client.contrib.locked_file'
  5053. getit-dev         |
  5054. getit-dev         | During handling of the above exception, another exception occurred:
  5055. getit-dev         |
  5056. getit-dev         | Traceback (most recent call last):
  5057. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 37, in <module>
  5058. getit-dev         |     from oauth2client.locked_file import LockedFile
  5059. getit-dev         | ModuleNotFoundError: No module named 'oauth2client.locked_file'
  5060. getit-dev         |
  5061. getit-dev         | During handling of the above exception, another exception occurred:
  5062. getit-dev         |
  5063. getit-dev         | Traceback (most recent call last):
  5064. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/__init__.py", line 41, in autodetect
  5065. getit-dev         |     from . import file_cache
  5066. getit-dev         |   File "/usr/local/lib/python3.6/site-packages/googleapiclient/discovery_cache/file_cache.py", line 41, in <module>
  5067. getit-dev         |     'file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth')
  5068. getit-dev         | ImportError: file_cache is unavailable when using oauth2client >= 4.0.0 or google-auth
  5069. getit-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
  5070. getit-dev         | Performing system checks...
  5071. getit-dev         |
  5072. getit-dev         | System check identified no issues (0 silenced).
  5073. getit-dev         | December 04, 2019 - 03:09:12
  5074. getit-dev         | Django version 2.1, using settings 'api.settings'
  5075. getit-dev         | Starting development server at http://0.0.0.0:80/
  5076. getit-dev         | Quit the server with CONTROL-C.
  5077. getit-dev         | api: INFO     [2019-12-04 03:09:29,379] [8a0199b666244e9b9f9bcf2158ea4279] healthcheck.views: Performing healthcheck
  5078. getit-dev         | api: INFO     [2019-12-04 03:09:29,444] [8a0199b666244e9b9f9bcf2158ea4279] healthcheck.views: Healtchcheck result is ok
  5079. getit-dev         | api: INFO     [2019-12-04 03:09:29,450] [8a0199b666244e9b9f9bcf2158ea4279] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5080. getit-dev         | api: INFO     [2019-12-04 03:09:29,499] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5081. getit-dev         | api: INFO     [2019-12-04 03:10:00,651] [869d323ac965451ba70bf0a2e5adb051] healthcheck.views: Performing healthcheck
  5082. getit-dev         | api: INFO     [2019-12-04 03:10:00,759] [869d323ac965451ba70bf0a2e5adb051] healthcheck.views: Healtchcheck result is ok
  5083. getit-dev         | api: INFO     [2019-12-04 03:10:00,778] [869d323ac965451ba70bf0a2e5adb051] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5084. getit-dev         | api: INFO     [2019-12-04 03:10:00,805] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5085. getit-dev         | api: INFO     [2019-12-04 03:10:31,882] [dc70e30e3af0419ca8bb6cf90be478c0] healthcheck.views: Performing healthcheck
  5086. getit-dev         | api: INFO     [2019-12-04 03:10:31,949] [dc70e30e3af0419ca8bb6cf90be478c0] healthcheck.views: Healtchcheck result is ok
  5087. getit-dev         | api: INFO     [2019-12-04 03:10:31,963] [dc70e30e3af0419ca8bb6cf90be478c0] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5088. getit-dev         | api: INFO     [2019-12-04 03:10:32,017] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5089. getit-dev         | api: INFO     [2019-12-04 03:11:03,087] [fb92ec8a76ca4ffa878d9ed98b9680da] healthcheck.views: Performing healthcheck
  5090. getit-dev         | api: INFO     [2019-12-04 03:11:03,174] [fb92ec8a76ca4ffa878d9ed98b9680da] healthcheck.views: Healtchcheck result is ok
  5091. getit-dev         | api: INFO     [2019-12-04 03:11:03,180] [fb92ec8a76ca4ffa878d9ed98b9680da] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5092. getit-dev         | api: INFO     [2019-12-04 03:11:03,192] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5093. getit-dev         | api: INFO     [2019-12-04 03:11:34,185] [5a742e5442664b2fb364452c134f5383] healthcheck.views: Performing healthcheck
  5094. getit-dev         | api: INFO     [2019-12-04 03:11:34,300] [5a742e5442664b2fb364452c134f5383] healthcheck.views: Healtchcheck result is ok
  5095. getit-dev         | api: INFO     [2019-12-04 03:11:34,304] [5a742e5442664b2fb364452c134f5383] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5096. getit-dev         | api: INFO     [2019-12-04 03:11:34,317] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5097. getit-dev         | api: INFO     [2019-12-04 03:12:05,206] [911a13d5f1c54e4a9ef399cab2935bbb] healthcheck.views: Performing healthcheck
  5098. getit-dev         | api: INFO     [2019-12-04 03:12:05,307] [911a13d5f1c54e4a9ef399cab2935bbb] healthcheck.views: Healtchcheck result is ok
  5099. getit-dev         | api: INFO     [2019-12-04 03:12:05,314] [911a13d5f1c54e4a9ef399cab2935bbb] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5100. getit-dev         | api: INFO     [2019-12-04 03:12:05,349] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5101. getit-dev         | api: INFO     [2019-12-04 03:12:36,217] [cd97af7785cf4b87a7067f757a0b1237] healthcheck.views: Performing healthcheck
  5102. getit-dev         | api: INFO     [2019-12-04 03:12:36,290] [cd97af7785cf4b87a7067f757a0b1237] healthcheck.views: Healtchcheck result is ok
  5103. getit-dev         | api: INFO     [2019-12-04 03:12:36,305] [cd97af7785cf4b87a7067f757a0b1237] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5104. getit-dev         | api: INFO     [2019-12-04 03:12:36,321] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5105. getit-dev         | api: INFO     [2019-12-04 03:13:07,047] [789b2d0c052649a6b3db74b2645c03ef] healthcheck.views: Performing healthcheck
  5106. getit-dev         | api: INFO     [2019-12-04 03:13:07,110] [789b2d0c052649a6b3db74b2645c03ef] healthcheck.views: Healtchcheck result is ok
  5107. getit-dev         | api: INFO     [2019-12-04 03:13:07,114] [789b2d0c052649a6b3db74b2645c03ef] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5108. getit-dev         | api: INFO     [2019-12-04 03:13:07,121] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5109. getit-dev         | api: INFO     [2019-12-04 03:13:38,325] [d48e4c0ae40b402cbd68ded172429182] healthcheck.views: Performing healthcheck
  5110. getit-dev         | api: INFO     [2019-12-04 03:13:38,425] [d48e4c0ae40b402cbd68ded172429182] healthcheck.views: Healtchcheck result is ok
  5111. getit-dev         | api: INFO     [2019-12-04 03:13:38,438] [d48e4c0ae40b402cbd68ded172429182] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5112. getit-dev         | api: INFO     [2019-12-04 03:13:38,472] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5113. getit-dev         | api: INFO     [2019-12-04 03:14:09,693] [8d9d4d49e85c47d5b5072c93a4c3dd1c] healthcheck.views: Performing healthcheck
  5114. getit-dev         | api: INFO     [2019-12-04 03:14:09,724] [8d9d4d49e85c47d5b5072c93a4c3dd1c] healthcheck.views: Healtchcheck result is ok
  5115. getit-dev         | api: INFO     [2019-12-04 03:14:09,733] [8d9d4d49e85c47d5b5072c93a4c3dd1c] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5116. getit-dev         | api: INFO     [2019-12-04 03:14:09,747] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5117. getit-dev         | api: INFO     [2019-12-04 03:14:40,752] [e6c5629ed962435eb379a0bae76bc95e] healthcheck.views: Performing healthcheck
  5118. getit-dev         | api: INFO     [2019-12-04 03:14:40,918] [e6c5629ed962435eb379a0bae76bc95e] healthcheck.views: Healtchcheck result is ok
  5119. getit-dev         | api: INFO     [2019-12-04 03:14:40,937] [e6c5629ed962435eb379a0bae76bc95e] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5120. getit-dev         | api: INFO     [2019-12-04 03:14:40,956] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5121. getit-dev         | api: INFO     [2019-12-04 03:15:11,950] [9a039f3e6ae3420dbb242a73645c7d37] healthcheck.views: Performing healthcheck
  5122. getit-dev         | api: INFO     [2019-12-04 03:15:12,009] [9a039f3e6ae3420dbb242a73645c7d37] healthcheck.views: Healtchcheck result is ok
  5123. getit-dev         | api: INFO     [2019-12-04 03:15:12,015] [9a039f3e6ae3420dbb242a73645c7d37] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5124. getit-dev         | api: INFO     [2019-12-04 03:15:12,020] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5125. getit-dev         | api: INFO     [2019-12-04 03:15:42,883] [4de77ab76ea74bd79077d6bb359e853d] healthcheck.views: Performing healthcheck
  5126. getit-dev         | api: INFO     [2019-12-04 03:15:42,943] [4de77ab76ea74bd79077d6bb359e853d] healthcheck.views: Healtchcheck result is ok
  5127. getit-dev         | api: INFO     [2019-12-04 03:15:42,952] [4de77ab76ea74bd79077d6bb359e853d] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5128. getit-dev         | api: INFO     [2019-12-04 03:15:42,990] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5129. getit-dev         | api: INFO     [2019-12-04 03:16:15,361] [4c97efee31ce4c6da9c575b0cd03a874] healthcheck.views: Performing healthcheck
  5130. getit-dev         | api: INFO     [2019-12-04 03:16:15,841] [4c97efee31ce4c6da9c575b0cd03a874] healthcheck.views: Healtchcheck result is ok
  5131. getit-dev         | api: INFO     [2019-12-04 03:16:15,847] [4c97efee31ce4c6da9c575b0cd03a874] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5132. getit-dev         | api: INFO     [2019-12-04 03:16:15,935] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5133. getit-dev         | api: INFO     [2019-12-04 03:16:29,589] [a403ac7feec44ab28b3be1b2bb86fec2] log_request_id.middleware: method=GET path=/ status=404
  5134. getit-dev         | Not Found: /
  5135. getit-dev         | api: WARNING  [2019-12-04 03:16:29,616] [none] django.request: Not Found: /
  5136. getit-dev         | api: WARNING  [2019-12-04 03:16:29,636] [none] django.server: "GET / HTTP/1.1" 404 2455
  5137. getit-dev         | Not Found: /favicon.ico
  5138. getit-dev         | api: WARNING  [2019-12-04 03:16:30,384] [e27c9dd2469b475e9b3b03a2b6eefaad] django.request: Not Found: /favicon.ico
  5139. getit-dev         | api: WARNING  [2019-12-04 03:16:30,467] [e27c9dd2469b475e9b3b03a2b6eefaad] django.server: "GET /favicon.ico HTTP/1.1" 404 2506
  5140. getit-dev         | api: INFO     [2019-12-04 03:16:37,867] [5144e7542d194d5eaa6c8cd74381f1cd] log_request_id.middleware: method=GET path=/ status=404
  5141. getit-dev         | Not Found: /
  5142. getit-dev         | api: WARNING  [2019-12-04 03:16:37,899] [none] django.request: Not Found: /
  5143. getit-dev         | api: WARNING  [2019-12-04 03:16:37,966] [none] django.server: "GET / HTTP/1.1" 404 2455
  5144. getit-dev         | api: INFO     [2019-12-04 03:16:47,786] [cd28b35174be4d79900bd315fbf5971f] healthcheck.views: Performing healthcheck
  5145. getit-dev         | api: INFO     [2019-12-04 03:16:47,919] [cd28b35174be4d79900bd315fbf5971f] healthcheck.views: Healtchcheck result is ok
  5146. getit-dev         | api: INFO     [2019-12-04 03:16:47,938] [cd28b35174be4d79900bd315fbf5971f] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5147. getit-dev         | api: INFO     [2019-12-04 03:16:47,961] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5148. getit-dev         | api: INFO     [2019-12-04 03:16:51,778] [1388723481cb4f23a466057b6d754411] log_request_id.middleware: method=GET path=/swagger status=301
  5149. getit-dev         | api: INFO     [2019-12-04 03:16:51,793] [none] django.server: "GET /swagger HTTP/1.1" 301 0
  5150. getit-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
  5151. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5152. getit-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
  5153. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5154. getit-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
  5155. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5156. getit-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
  5157. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5158. getit-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
  5159. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5160. getit-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
  5161. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5162. getit-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
  5163. getit-dev         |   "{} is not compatible with schema generation".format(view.__class__)
  5164. getit-dev         | api: INFO     [2019-12-04 03:16:52,453] [1b40274e8b2f43d99ec0df651997fe3e] log_request_id.middleware: method=GET path=/swagger/ status=200
  5165. getit-dev         | api: INFO     [2019-12-04 03:16:52,473] [none] django.server: "GET /swagger/ HTTP/1.1" 200 4007
  5166. getit-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
  5167. getit-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
  5168. getit-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
  5169. getit-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
  5170. getit-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
  5171. getit-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
  5172. getit-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
  5173. getit-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
  5174. getit-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
  5175. getit-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
  5176. getit-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
  5177. getit-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
  5178. getit-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
  5179. getit-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
  5180. getit-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
  5181. getit-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
  5182. getit-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
  5183. getit-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
  5184. getit-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
  5185. getit-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
  5186. getit-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
  5187. getit-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
  5188. getit-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
  5189. getit-dev         | api: INFO     [2019-12-04 03:16:55,230] [5a6639da35f94324a680f37afdff3e3c] log_request_id.middleware: method=GET path=/swagger/ status=200
  5190. getit-dev         | api: INFO     [2019-12-04 03:16:55,241] [none] django.server: "GET /swagger/?format=openapi HTTP/1.1" 200 42065
  5191. getit-dev         | api: INFO     [2019-12-04 03:17:19,545] [9e367b8b1ca34a7fa40a9314513fc1bf] healthcheck.views: Performing healthcheck
  5192. getit-dev         | api: INFO     [2019-12-04 03:17:19,651] [9e367b8b1ca34a7fa40a9314513fc1bf] healthcheck.views: Healtchcheck result is ok
  5193. getit-dev         | api: INFO     [2019-12-04 03:17:19,658] [9e367b8b1ca34a7fa40a9314513fc1bf] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5194. getit-dev         | api: INFO     [2019-12-04 03:17:19,713] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5195. getit-dev         | api: INFO     [2019-12-04 03:17:50,510] [cd305896f624442f8ff48a3f3fc88742] healthcheck.views: Performing healthcheck
  5196. getit-dev         | api: INFO     [2019-12-04 03:17:50,566] [cd305896f624442f8ff48a3f3fc88742] healthcheck.views: Healtchcheck result is ok
  5197. getit-dev         | api: INFO     [2019-12-04 03:17:50,595] [cd305896f624442f8ff48a3f3fc88742] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5198. getit-dev         | api: INFO     [2019-12-04 03:17:50,649] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5199. getit-dev         | api: INFO     [2019-12-04 03:18:21,660] [c676dc6d27a844708666a5641c893a70] healthcheck.views: Performing healthcheck
  5200. getit-dev         | api: INFO     [2019-12-04 03:18:21,739] [c676dc6d27a844708666a5641c893a70] healthcheck.views: Healtchcheck result is ok
  5201. getit-dev         | api: INFO     [2019-12-04 03:18:21,753] [c676dc6d27a844708666a5641c893a70] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5202. getit-dev         | api: INFO     [2019-12-04 03:18:21,763] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5203. getit-dev         | api: INFO     [2019-12-04 03:18:52,812] [3d7fe89fe2684510ac620eed0739a6f3] healthcheck.views: Performing healthcheck
  5204. getit-dev         | api: INFO     [2019-12-04 03:18:52,876] [3d7fe89fe2684510ac620eed0739a6f3] healthcheck.views: Healtchcheck result is ok
  5205. getit-dev         | api: INFO     [2019-12-04 03:18:52,935] [3d7fe89fe2684510ac620eed0739a6f3] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5206. getit-dev         | api: INFO     [2019-12-04 03:18:52,943] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5207. getit-dev         | api: INFO     [2019-12-04 03:19:23,820] [8e1d56ffd88242f39c128959ce41e6c9] healthcheck.views: Performing healthcheck
  5208. getit-dev         | api: INFO     [2019-12-04 03:19:23,874] [8e1d56ffd88242f39c128959ce41e6c9] healthcheck.views: Healtchcheck result is ok
  5209. getit-dev         | api: INFO     [2019-12-04 03:19:23,892] [8e1d56ffd88242f39c128959ce41e6c9] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5210. getit-dev         | api: INFO     [2019-12-04 03:19:23,940] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5211. getit-dev         | api: INFO     [2019-12-04 03:19:55,145] [84ca13228cf4451597b272e8d0849dc6] healthcheck.views: Performing healthcheck
  5212. getit-dev         | api: INFO     [2019-12-04 03:19:55,205] [84ca13228cf4451597b272e8d0849dc6] healthcheck.views: Healtchcheck result is ok
  5213. getit-dev         | api: INFO     [2019-12-04 03:19:55,235] [84ca13228cf4451597b272e8d0849dc6] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5214. getit-dev         | api: INFO     [2019-12-04 03:19:55,305] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5215. getit-dev         | api: INFO     [2019-12-04 03:20:26,209] [f95f275207b6492086439dc89f8e3555] healthcheck.views: Performing healthcheck
  5216. getit-dev         | api: INFO     [2019-12-04 03:20:26,242] [f95f275207b6492086439dc89f8e3555] healthcheck.views: Healtchcheck result is ok
  5217. getit-dev         | api: INFO     [2019-12-04 03:20:26,249] [f95f275207b6492086439dc89f8e3555] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5218. getit-dev         | api: INFO     [2019-12-04 03:20:26,252] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5219. getit-dev         | api: INFO     [2019-12-04 03:20:57,612] [2e6fd9889f2a492882475c0436b7c5d8] healthcheck.views: Performing healthcheck
  5220. getit-dev         | api: INFO     [2019-12-04 03:20:57,678] [2e6fd9889f2a492882475c0436b7c5d8] healthcheck.views: Healtchcheck result is ok
  5221. getit-dev         | api: INFO     [2019-12-04 03:20:57,687] [2e6fd9889f2a492882475c0436b7c5d8] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5222. getit-dev         | api: INFO     [2019-12-04 03:20:57,723] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5223. getit-dev         | api: INFO     [2019-12-04 03:21:29,008] [e8210996e5a44c9885769e92b8791783] healthcheck.views: Performing healthcheck
  5224. getit-dev         | api: INFO     [2019-12-04 03:21:29,094] [e8210996e5a44c9885769e92b8791783] healthcheck.views: Healtchcheck result is ok
  5225. getit-dev         | api: INFO     [2019-12-04 03:21:29,108] [e8210996e5a44c9885769e92b8791783] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5226. getit-dev         | api: INFO     [2019-12-04 03:21:29,128] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5227. getit-dev         | api: INFO     [2019-12-04 03:22:00,155] [20e1dd470f1a4ba09114e71f74c6f896] healthcheck.views: Performing healthcheck
  5228. getit-dev         | api: INFO     [2019-12-04 03:22:00,207] [20e1dd470f1a4ba09114e71f74c6f896] healthcheck.views: Healtchcheck result is ok
  5229. getit-dev         | api: INFO     [2019-12-04 03:22:00,289] [20e1dd470f1a4ba09114e71f74c6f896] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5230. getit-dev         | api: INFO     [2019-12-04 03:22:00,323] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5231. getit-dev         | api: INFO     [2019-12-04 03:22:31,193] [2ca34bd6d3cc4fde9a01021c107d0b5c] healthcheck.views: Performing healthcheck
  5232. getit-dev         | api: INFO     [2019-12-04 03:22:31,264] [2ca34bd6d3cc4fde9a01021c107d0b5c] healthcheck.views: Healtchcheck result is ok
  5233. getit-dev         | api: INFO     [2019-12-04 03:22:31,269] [2ca34bd6d3cc4fde9a01021c107d0b5c] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5234. getit-dev         | api: INFO     [2019-12-04 03:22:31,273] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
  5235. getit-dev         | api: INFO     [2019-12-04 03:23:02,421] [067f4bca399b45adb5cb05c86be6232a] healthcheck.views: Performing healthcheck
  5236. getit-dev         | api: INFO     [2019-12-04 03:23:02,463] [067f4bca399b45adb5cb05c86be6232a] healthcheck.views: Healtchcheck result is ok
  5237. getit-dev         | api: INFO     [2019-12-04 03:23:02,472] [067f4bca399b45adb5cb05c86be6232a] log_request_id.middleware: method=GET path=/healthcheck/ status=200
  5238. getit-dev         | api: INFO     [2019-12-04 03:23:02,491] [none] django.server: "GET /healthcheck/ HTTP/1.1" 200 40
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement