From f59f1ed59c5cb8f2cd35162dc573da6c20c508ac Mon Sep 17 00:00:00 2001 From: Steve Sloan Date: Sat, 18 Apr 2015 16:11:57 -0700 Subject: [PATCH] Added oplog_replay to Protocol::Query flags. --- lib/moped/protocol/query.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/moped/protocol/query.rb b/lib/moped/protocol/query.rb index ac455fc..ed265bb 100644 --- a/lib/moped/protocol/query.rb +++ b/lib/moped/protocol/query.rb @@ -29,6 +29,7 @@ class Query # @return [ Array ] the flags for this message flags :flags, tailable: 2 ** 1, slave_ok: 2 ** 2, + oplog_replay: 2 ** 3, no_cursor_timeout: 2 ** 4, await_data: 2 ** 5, exhaust: 2 ** 6