Skip to content

Commit 1afb5b6

Browse files
committed
Wait longer for the updates
1 parent 3c0a06c commit 1afb5b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ go:
77
before_install:
88
- sudo apt-get -qq update
99
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
10-
- echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.0.list
10+
- echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list
1111
- sudo apt-get update
1212
- sudo apt-get install -y mongodb-org
1313
- ulimit -a

tail_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ var _ = Describe("Tail", func() {
554554

555555
_, err = pipeline.Run()
556556
Expect(err).ToNot(HaveOccurred())
557-
time.Sleep(40 * sleepDuration) // 1000 single updates take long time :-( 2s to be safe on travis
557+
time.Sleep(50 * sleepDuration) // 1000 single updates take long time :-( 2s to be safe on travis
558558

559559
n, err := db.Copy().DB(database).C("order").Find(
560560
bson.M{"information.price": bson.M{"$exists": true}},

0 commit comments

Comments
 (0)