We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bf37e commit 91c40edCopy full SHA for 91c40ed
2 files changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:4.5
+FROM node:4.6
2
3
RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.1.2/dumb-init_1.1.2_amd64
4
RUN chmod +x /usr/local/bin/dumb-init
lib/db.js
@@ -122,6 +122,7 @@ api.init = function (app, callback) {
122
api.getSnapshots = function getSnapshots (opts, callback) {
123
r.table(table)
124
.orderBy({index: r.desc('createdAt')})
125
+ .filter({'status': 'SUCCESSFUL'})
126
.limit(10)
127
.run()
128
.then(function (results) {
0 commit comments