Skip to content

Commit 0216e46

Browse files
bottlerfacebook-github-bot
authored andcommitted
Slow pull from docker
Summary: The "manual" docker pull in the testrun builds has been taking more than 10 minutes recently, and its lack of output causes circleci to timeout. As a quick fix, we enable the output from this operation. Reviewed By: gkioxari Differential Revision: D25305127 fbshipit-source-id: 19682bfa0294145457a37df6d6faf7a08dcc63c9
1 parent a0cd250 commit 0216e46

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.circleci/config.in.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ jobs:
187187
188188
export DOCKER_IMAGE=pytorch/conda-cuda
189189
echo Pulling docker image $DOCKER_IMAGE
190-
docker pull $DOCKER_IMAGE >/dev/null
191-
190+
docker pull $DOCKER_IMAGE
192191
- run:
193192
name: Build and run tests
194193
command: |

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ jobs:
187187
188188
export DOCKER_IMAGE=pytorch/conda-cuda
189189
echo Pulling docker image $DOCKER_IMAGE
190-
docker pull $DOCKER_IMAGE >/dev/null
191-
190+
docker pull $DOCKER_IMAGE
192191
- run:
193192
name: Build and run tests
194193
command: |

0 commit comments

Comments
 (0)