scram 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4d4f42aaff808f60d5d9c3c1fd55749eb3b04f6a
4
- data.tar.gz: 04e6595617fdea9551367a3e3cfff2c77cacb8c3
3
+ metadata.gz: 2eb81ae87cd936d67d91dcb5ad6b103a7ab44b04
4
+ data.tar.gz: 1e0a1f8cef2a5c5a804f0a15677ca0b45033a407
5
5
  SHA512:
6
- metadata.gz: 20c53c83ef0fccbb4ab243a7e29bd950840428bbbbe5795f466b4ae2bef8cab43d7eb7dfde66596c48bae33c4f45df1c2834dc7e77d27ee53327c301d3ac0cdc
7
- data.tar.gz: 242ed1189b2f8d7074def6194593c1fead56d0d8090ddfd73a1031aafc6c4512be40b4b9e555cd3e6af8a7085353c1975a415945fff783a5d494d8401dc913e8
6
+ metadata.gz: c3bec78c1ab0ca02ca53879fdd3e94351b597a4c7b69d0fca0234f7bc166ace4437e2edbe97a24b6e3fd42cbb0cfd5cc795d5797b47124dd70a3e75ea0ec7aea
7
+ data.tar.gz: 03026fec11fdf520300f8c053e17a91d50f3251a33bec782536874749dcc5544b07bcd8b969309d0ece57695431f7512ccdbc6776e0c6bafa08b1b59193b263c
data/README.md CHANGED
@@ -160,8 +160,24 @@ builder = Scram::DSL::Builders::ComparatorBuilder.new do
160
160
  end
161
161
  Scram::DSL::Definitions.add_comparators(builder)
162
162
  ```
163
-
164
163
  Now your targets can use `asdf` as a conditions key, and Scram will use your method of comparison to determine if something is true or not. In this case, `asdf` returns true regardless of the two objects being compared.
164
+
165
+ #### Gotchas
166
+ Having trouble trying to use a holder check on a relation? Easy fix! The issue you are experiencing is just that the holder's scram_compare_value will probably be an ObjectId of some sort, but if you are comparing it against the relation... you are trying to compare the current holder's ObjectId to a document. The fix to this is just defining a condition within the model with the user you are trying to compare, and returning the object id of that.
167
+
168
+ Example of the issue:
169
+ Lets say your `Post` model `belongs_to :user`. If you tried setting up a condition which checks something like this: `:equals => { :'user' => "*holder" }` it will never work because of the above description. To fix it, define a condition which returns an ObjectId.
170
+
171
+ ```ruby
172
+ scram_define do
173
+ condition :owner do |post|
174
+ post.user.scram_compare_value # we could also have done post.user.id
175
+ end
176
+ end
177
+ ```
178
+
179
+ Now update your Target to have the following condition: `:equals => { :'*owner' => "*holder" }`. Voila! It will all work now, because you are correctly comparing the right data types.
180
+
165
181
  ## Development
166
182
 
167
183
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -57,7 +57,7 @@ module Scram
57
57
  attribute = begin obj.send(:"#{field}") rescue return :abstain end
58
58
 
59
59
  # Special value substitutions
60
- model_value.gsub! "*holder", holder.scram_compare_value if model_value.respond_to?(:gsub!)
60
+ (model_value = holder.scram_compare_value) if model_value == "*holder"
61
61
 
62
62
  # Abstain if this target doesn't apply to obj in any of its attributes
63
63
  return :abstain unless comparator.call(attribute, model_value)
@@ -1,3 +1,3 @@
1
1
  module Scram
2
- VERSION = '0.1.0'
2
+ VERSION = "0.1.1"
3
3
  end
@@ -4,2318 +4,72 @@ MONGODB | Topology type 'unknown' changed to type 'single'.
4
4
  MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
5
5
  MONGODB | There was a change in the members of the 'single' topology.
6
6
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
7
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.021963s
8
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
9
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00048300000000000003s
10
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
11
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000507s
12
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
13
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000938s
14
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
15
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002137s
16
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467409'), "actions"=>["woot"], "conditions"=>{"equals"=>...
17
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.055528s
18
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
19
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000517s
20
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
21
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0005849999999999999s
22
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c09366a352e0c467408')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
23
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.00175s
24
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
25
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002373s
26
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
27
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003241s
28
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740a'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740b'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
29
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000949s
30
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
31
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000536s
32
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
33
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000686s
34
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740c'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
35
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000456s
36
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740d'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
37
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000898s
38
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
39
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00043900000000000005s
40
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
41
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009860000000000001s
42
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
43
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000553s
44
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
45
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000535s
46
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
47
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000784s
48
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
49
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00030900000000000003s
50
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
51
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000458s
52
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
53
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000708s
54
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
55
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013119999999999998s
56
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
57
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002044s
58
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
59
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000471s
60
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
61
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000527s
62
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c46740f'), "actions"=>["woot"], "conditions"=>{}, "priori...
63
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.007477s
64
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
65
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000941s
66
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
67
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008990000000000001s
68
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467411'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c09366a352e0c467412'), "actions"=>["woot"], "conditions"=>{"equals"=>...
69
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000699s
70
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
71
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000742s
72
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
73
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000656s
74
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
75
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001636s
76
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
77
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000836s
78
- MONGODB | Topology type 'unknown' initializing.
79
- MONGODB | Server localhost:27017 initializing.
80
- MONGODB | Topology type 'unknown' changed to type 'single'.
81
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
82
- MONGODB | There was a change in the members of the 'single' topology.
83
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
84
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012319999999999998s
7
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001032s
85
8
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
86
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.017854000000000002s
9
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00041900000000000005s
87
10
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
88
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007419999999999999s
11
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.026046s
89
12
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
90
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008719999999999999s
13
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003761s
91
14
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
92
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001075s
15
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.012817s
93
16
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
94
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002242s
17
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000973s
95
18
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
96
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000911s
19
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0032909999999999997s
97
20
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
98
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000384s
21
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000723s
99
22
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
100
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002951s
23
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00062s
101
24
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
102
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.042003s
103
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d7'), "actions"=>["woot"], "conditions"=>{"equals"=>...
104
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0016899999999999999s
105
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
106
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000614s
107
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
108
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001021s
109
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d6')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
110
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.003666s
25
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009019999999999999s
111
26
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
112
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000625s
27
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0034879999999999998s
113
28
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
114
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001557s
115
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d8'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176d9'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
116
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000954s
29
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004462000000000001s
30
+ MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b21e6f366a355c32955182'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b21e6f366a355c32955183'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
31
+ MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008640000000000001s
117
32
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
118
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001319s
33
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001073s
119
34
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
120
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000657s
121
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176da'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
122
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000455s
123
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176db'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
124
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000891s
35
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000676s
125
36
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
126
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000673s
37
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007149999999999999s
127
38
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
128
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000655s
39
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007920000000000001s
129
40
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
130
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003287s
41
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003316s
131
42
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
132
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000872s
43
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0030600000000000002s
133
44
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
134
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009947s
45
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004752s
135
46
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
136
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0013340000000000001s
47
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.038447999999999996s
137
48
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
138
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000945s
49
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002997s
139
50
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
140
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008860000000000001s
51
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000812s
141
52
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
142
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002295s
53
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008558s
143
54
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
144
55
  MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007740000000000001s
145
56
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
146
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0011439999999999998s
147
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
148
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001594s
149
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176dc'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176dd'), "actions"=>["woot"], "conditions"=>{}, "priori...
150
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00076s
151
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
152
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003355s
153
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
154
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000544s
155
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176df'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01c30366a352fe24176e0'), "actions"=>["woot"], "conditions"=>{"equals"=>...
156
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008949s
157
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
158
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001104s
159
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
160
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012159999999999999s
161
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
162
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008799999999999999s
163
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
164
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001619s
165
- MONGODB | Topology type 'unknown' initializing.
166
- MONGODB | Server localhost:27017 initializing.
167
- MONGODB | Topology type 'unknown' changed to type 'single'.
168
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
169
- MONGODB | There was a change in the members of the 'single' topology.
170
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
171
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012519999999999999s
172
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
173
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00058s
174
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
175
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000479s
176
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
177
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000515s
178
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
179
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001097s
180
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
181
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001663s
182
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
183
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000824s
184
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
185
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006122s
186
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
187
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009519999999999999s
188
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
189
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000616s
190
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09901'), "actions"=>["woot"], "conditions"=>{"equals"=>...
191
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007109999999999999s
192
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
193
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0020800000000000003s
194
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
195
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000751s
196
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b01ec0366a3543b7f09900')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
197
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001643s
198
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
199
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002463s
200
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
201
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001871s
202
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09902'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09903'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
203
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000879s
204
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
205
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000763s
206
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
207
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0010090000000000001s
208
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09904'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
209
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0005470000000000001s
210
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09905'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
211
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000616s
212
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
213
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0004s
214
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
215
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00042100000000000004s
216
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
217
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001332s
218
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
219
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00078s
220
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
221
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001065s
222
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
223
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005501s
224
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
225
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007932s
226
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
227
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000989s
228
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
229
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004108s
230
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
231
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000609s
232
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
233
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0029690000000000003s
234
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
235
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008529999999999999s
236
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09906'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09907'), "actions"=>["woot"], "conditions"=>{}, "priori...
237
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007750000000000001s
238
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
239
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001129s
240
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
241
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000713s
242
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f09909'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b01ec1366a3543b7f0990a'), "actions"=>["woot"], "conditions"=>{"equals"=>...
243
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002252s
244
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
245
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001086s
246
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
247
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00065s
248
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
249
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000654s
250
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
251
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000642s
252
- MONGODB | Topology type 'unknown' initializing.
253
- MONGODB | Server localhost:27017 initializing.
254
- MONGODB | Topology type 'unknown' changed to type 'single'.
255
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
256
- MONGODB | There was a change in the members of the 'single' topology.
257
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
258
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010919999999999999s
259
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
260
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000803s
261
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
262
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000718s
263
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
264
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006392999999999999s
265
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
266
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000516s
267
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
268
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000356s
269
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
270
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000476s
271
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
272
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000343s
273
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
274
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000483s
275
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
276
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000499s
277
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c0'), "actions"=>["woot"], "conditions"=>{"equals"=>...
278
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000912s
279
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
280
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000661s
281
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
282
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000741s
283
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e27366a35567a1243bf')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
284
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001505s
285
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
286
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000678s
287
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
288
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00878s
289
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c1'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c2'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
290
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008910000000000001s
291
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
292
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004209s
293
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
294
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001784s
295
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c3'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
296
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001001s
297
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c4'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
298
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001493s
299
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
300
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000433s
301
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
302
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00046800000000000005s
303
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
304
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007930000000000001s
305
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
306
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00263s
307
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
308
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008629999999999999s
309
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
310
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000683s
311
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
312
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007610000000000001s
313
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
314
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007769999999999999s
315
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
316
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003551s
317
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
318
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00776s
319
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
320
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001478s
321
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
322
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003874s
323
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c5'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c6'), "actions"=>["woot"], "conditions"=>{}, "priori...
324
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00113s
325
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
326
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001365s
327
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
328
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002486s
329
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c8'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243c9'), "actions"=>["woot"], "conditions"=>{"equals"=>...
330
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0029600000000000004s
331
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
332
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007379999999999999s
333
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
334
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000714s
335
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243ca'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e27366a35567a1243cb'), "actions"=>["woot"], "conditions"=>{}, "priori...
336
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.011056s
337
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
338
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007390000000000001s
339
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
340
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002413s
341
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
342
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001677s
343
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
344
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000846s
345
- MONGODB | Topology type 'unknown' initializing.
346
- MONGODB | Server localhost:27017 initializing.
347
- MONGODB | Topology type 'unknown' changed to type 'single'.
348
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
349
- MONGODB | There was a change in the members of the 'single' topology.
350
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
351
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001815s
352
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
353
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006601s
354
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
355
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000614s
356
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
357
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000406s
358
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
359
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001349s
360
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
361
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003619s
362
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
363
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.011016s
364
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
365
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.013872s
366
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
367
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002186s
368
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
369
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008410000000000001s
370
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b150'), "actions"=>["woot"], "conditions"=>{"equals"=>...
371
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000816s
372
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
373
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.006461000000000001s
374
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
375
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.017705s
376
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b02e32366a35580793b14f')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
377
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0017519999999999999s
378
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
379
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00079s
380
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
381
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005814s
382
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b151'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b152'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
383
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002039s
384
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
385
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000915s
386
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
387
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0029579999999999997s
388
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b153'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
389
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.015338000000000001s
390
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b154'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
391
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0006789999999999999s
392
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
393
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00067s
394
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
395
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005715s
396
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
397
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013310000000000002s
398
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
399
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005809999999999999s
400
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
401
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004664s
402
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
403
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003738s
404
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
405
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001866s
406
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
407
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002337s
408
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
409
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005819999999999999s
410
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
411
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002066s
412
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
413
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007509999999999999s
414
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
415
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000501s
416
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b155'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b156'), "actions"=>["woot"], "conditions"=>{}, "priori...
417
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0025840000000000004s
418
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
419
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0020789999999999997s
420
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
421
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000526s
422
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b158'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b159'), "actions"=>["woot"], "conditions"=>{"equals"=>...
423
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000756s
424
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
425
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001763s
426
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
427
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012740000000000002s
428
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b15a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e32366a35580793b15b'), "actions"=>["woot"], "conditions"=>{}, "priori...
429
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004327s
430
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
431
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00124s
432
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
433
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004208s
434
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
435
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0017820000000000002s
436
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
437
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0015530000000000001s
438
- MONGODB | Topology type 'unknown' initializing.
439
- MONGODB | Server localhost:27017 initializing.
440
- MONGODB | Topology type 'unknown' changed to type 'single'.
441
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
442
- MONGODB | There was a change in the members of the 'single' topology.
443
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
444
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002035s
445
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
446
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008719999999999999s
447
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f0'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f1'), "actions"=>["woot"], "conditions"=>{"equals"=>...
448
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.007898s
449
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
450
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001754s
451
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
452
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0066949999999999996s
453
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e57366a355acfd9a7f3'), "actions"=>["woot"], "conditions"=>{}, "priori...
454
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001405s
455
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
456
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0021s
457
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
458
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003065s
459
- MONGODB | Topology type 'unknown' initializing.
460
- MONGODB | Server localhost:27017 initializing.
461
- MONGODB | Topology type 'unknown' changed to type 'single'.
462
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
463
- MONGODB | There was a change in the members of the 'single' topology.
464
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
465
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001374s
466
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
467
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006850000000000001s
468
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b8f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b90'), "actions"=>["woot"], "conditions"=>{"equals"=>...
469
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.025413s
470
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
471
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006990000000000001s
472
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
473
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000585s
474
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b91'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e6c366a355b696d3b92'), "actions"=>["woot"], "conditions"=>{}, "priori...
475
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000999s
476
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
477
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.026715s
478
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
479
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001534s
480
- MONGODB | Topology type 'unknown' initializing.
481
- MONGODB | Server localhost:27017 initializing.
482
- MONGODB | Topology type 'unknown' changed to type 'single'.
483
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
484
- MONGODB | There was a change in the members of the 'single' topology.
485
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
486
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0011s
487
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
488
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00041400000000000003s
489
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988376'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988377'), "actions"=>["woot"], "conditions"=>{"equals"=>...
490
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.035988s
491
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
492
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000889s
493
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
494
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001049s
495
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988378'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e80366a355c0a988379'), "actions"=>["woot"], "conditions"=>{}, "priori...
496
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000866s
497
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
498
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.023091s
499
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
500
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000639s
501
- MONGODB | Topology type 'unknown' initializing.
502
- MONGODB | Server localhost:27017 initializing.
503
- MONGODB | Topology type 'unknown' changed to type 'single'.
504
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
505
- MONGODB | There was a change in the members of the 'single' topology.
506
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
507
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0011799999999999998s
508
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
509
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000424s
510
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffa9'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffaa'), "actions"=>["woot"], "conditions"=>{"equals"=>...
511
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002265s
512
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
513
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00146s
514
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
515
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0016170000000000002s
516
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffab'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02e8c366a355c99c3ffac'), "actions"=>["woot"], "conditions"=>{}, "priori...
517
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008594000000000001s
518
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
519
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000669s
520
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
521
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001382s
522
- MONGODB | Topology type 'unknown' initializing.
523
- MONGODB | Server localhost:27017 initializing.
524
- MONGODB | Topology type 'unknown' changed to type 'single'.
525
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
526
- MONGODB | There was a change in the members of the 'single' topology.
527
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
528
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001143s
529
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
530
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0004980000000000001s
531
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593aca7'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593aca8'), "actions"=>["woot"], "conditions"=>{"equals"=>...
532
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.032782000000000006s
533
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
534
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009299999999999999s
535
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
536
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001292s
537
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593aca9'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ea7366a355d2593acaa'), "actions"=>["woot"], "conditions"=>{}, "priori...
538
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0012460000000000001s
539
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
540
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.030142000000000002s
541
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
542
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0025499999999999997s
543
- MONGODB | Topology type 'unknown' initializing.
544
- MONGODB | Server localhost:27017 initializing.
545
- MONGODB | Topology type 'unknown' changed to type 'single'.
546
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
547
- MONGODB | There was a change in the members of the 'single' topology.
548
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
549
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001348s
550
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
551
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00049s
552
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ebc366a355de2d69710'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ebc366a355de2d69711'), "actions"=>["woot"], "conditions"=>{"equals"=>...
553
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002761s
554
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
555
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.038707000000000005s
556
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
557
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00675s
558
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ebd366a355de2d69712'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ebd366a355de2d69713'), "actions"=>["woot"], "conditions"=>{}, "priori...
559
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0026279999999999997s
560
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
561
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000653s
562
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
563
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004188s
564
- MONGODB | Topology type 'unknown' initializing.
565
- MONGODB | Server localhost:27017 initializing.
566
- MONGODB | Topology type 'unknown' changed to type 'single'.
567
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
568
- MONGODB | There was a change in the members of the 'single' topology.
569
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
570
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012200000000000002s
571
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
572
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000654s
573
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f3e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f3f'), "actions"=>["woot"], "conditions"=>{"equals"=>...
574
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008907s
575
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
576
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.018839s
577
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
578
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001951s
579
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f40'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ed3366a355e85385f41'), "actions"=>["woot"], "conditions"=>{}, "priori...
580
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.006726s
581
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
582
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005340000000000001s
583
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
584
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001168s
585
- MONGODB | Topology type 'unknown' initializing.
586
- MONGODB | Server localhost:27017 initializing.
587
- MONGODB | Topology type 'unknown' changed to type 'single'.
588
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
589
- MONGODB | There was a change in the members of the 'single' topology.
590
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
591
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001016s
592
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
593
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00076s
594
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ee2366a355f24bf5271'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ee2366a355f24bf5272'), "actions"=>["woot"], "conditions"=>{"equals"=>...
595
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001578s
596
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
597
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000744s
598
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
599
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000959s
600
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ee3366a355f24bf5273'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ee3366a355f24bf5274'), "actions"=>["woot"], "conditions"=>{}, "priori...
601
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.032668s
602
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
603
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007340000000000001s
604
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
605
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004703000000000001s
606
- MONGODB | Topology type 'unknown' initializing.
607
- MONGODB | Server localhost:27017 initializing.
608
- MONGODB | Topology type 'unknown' changed to type 'single'.
609
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
610
- MONGODB | There was a change in the members of the 'single' topology.
611
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
612
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000992s
613
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
614
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00038199999999999996s
615
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0d9'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0da'), "actions"=>["woot"], "conditions"=>{"equals"=>...
616
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.019528s
617
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
618
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008810000000000001s
619
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
620
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000719s
621
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0db'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02ef2366a355fdd8bc0dc'), "actions"=>["woot"], "conditions"=>{}, "priori...
622
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000462s
623
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
624
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001387s
625
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
626
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00046s
627
- MONGODB | Topology type 'unknown' initializing.
628
- MONGODB | Server localhost:27017 initializing.
629
- MONGODB | Topology type 'unknown' changed to type 'single'.
630
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
631
- MONGODB | There was a change in the members of the 'single' topology.
632
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
633
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001049s
634
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
635
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0014s
636
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f80366a35609946818f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f80366a356099468190'), "actions"=>["woot"], "conditions"=>{"equals"=>...
637
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.039048s
638
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
639
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004154s
640
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
641
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003966s
642
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f80366a356099468191'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f80366a356099468192'), "actions"=>["woot"], "conditions"=>{}, "priori...
643
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.026879s
644
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
645
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0016380000000000001s
646
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
647
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002343s
648
- MONGODB | Topology type 'unknown' initializing.
649
- MONGODB | Server localhost:27017 initializing.
650
- MONGODB | Topology type 'unknown' changed to type 'single'.
651
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
652
- MONGODB | There was a change in the members of the 'single' topology.
653
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
654
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000964s
655
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
656
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000426s
657
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1903'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1904'), "actions"=>["woot"], "conditions"=>{"equals"=>...
658
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.020094s
659
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
660
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.005857s
661
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
662
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00679s
663
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1905'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02f94366a3561399b1906'), "actions"=>["woot"], "conditions"=>{}, "priori...
664
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000516s
665
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
666
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000794s
667
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
668
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002445s
669
- MONGODB | Topology type 'unknown' initializing.
670
- MONGODB | Server localhost:27017 initializing.
671
- MONGODB | Topology type 'unknown' changed to type 'single'.
672
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
673
- MONGODB | There was a change in the members of the 'single' topology.
674
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
675
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001094s
676
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
677
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000546s
678
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81823'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81824'), "actions"=>["woot"], "conditions"=>{"equals"=>...
679
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000971s
680
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
681
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000676s
682
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
683
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007229999999999999s
684
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81825'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fea366a35621bd81826'), "actions"=>["woot"], "conditions"=>{}, "priori...
685
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000533s
686
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
687
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005769999999999999s
688
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
689
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000964s
690
- MONGODB | Topology type 'unknown' initializing.
691
- MONGODB | Server localhost:27017 initializing.
692
- MONGODB | Topology type 'unknown' changed to type 'single'.
693
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
694
- MONGODB | There was a change in the members of the 'single' topology.
695
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
696
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000866s
697
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
698
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000341s
699
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb1'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb2'), "actions"=>["woot"], "conditions"=>{"equals"=>...
700
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001375s
701
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
702
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000683s
703
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
704
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004345s
705
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb3'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b02fee366a356302f23fb4'), "actions"=>["woot"], "conditions"=>{}, "priori...
706
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.008866s
707
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
708
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004531s
709
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
710
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003303s
711
- MONGODB | Topology type 'unknown' initializing.
712
- MONGODB | Server localhost:27017 initializing.
713
- MONGODB | Topology type 'unknown' changed to type 'single'.
714
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
715
- MONGODB | There was a change in the members of the 'single' topology.
716
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
717
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001293s
718
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
719
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000647s
720
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4b'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4c'), "actions"=>["woot"], "conditions"=>{"equals"=>...
721
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001467s
722
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
723
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.021259999999999998s
724
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
725
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.015965s
726
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4d'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03041366a3563a71a3a4e'), "actions"=>["woot"], "conditions"=>{}, "priori...
727
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.051048s
728
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
729
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000773s
730
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
731
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006159999999999999s
732
- MONGODB | Topology type 'unknown' initializing.
733
- MONGODB | Server localhost:27017 initializing.
734
- MONGODB | Topology type 'unknown' changed to type 'single'.
735
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
736
- MONGODB | There was a change in the members of the 'single' topology.
737
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
738
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001006s
739
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
740
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008770000000000001s
741
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e4'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e5'), "actions"=>["woot"], "conditions"=>{"equals"=>...
742
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007260000000000001s
743
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
744
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008416s
745
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
746
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011424s
747
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e6'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03057366a3564640fc3e7'), "actions"=>["woot"], "conditions"=>{}, "priori...
748
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003664s
749
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
750
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000683s
751
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
752
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000597s
753
- MONGODB | Topology type 'unknown' initializing.
754
- MONGODB | Server localhost:27017 initializing.
755
- MONGODB | Topology type 'unknown' changed to type 'single'.
756
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
757
- MONGODB | There was a change in the members of the 'single' topology.
758
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
759
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001141s
760
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
761
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000533s
762
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
763
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00073s
764
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
765
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000481s
766
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
767
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010097s
768
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
769
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003541s
770
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
771
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000619s
772
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
773
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00032500000000000004s
774
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
775
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004685s
776
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
777
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001712s
778
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ab7'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ab8'), "actions"=>["woot"], "conditions"=>{"equals"=>...
779
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0013930000000000001s
780
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
781
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007425s
782
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
783
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.015064s
784
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ab9'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043aba'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
785
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000786s
786
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
787
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0026709999999999998s
788
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
789
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000976s
790
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abb'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
791
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000651s
792
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abc'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
793
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001502s
794
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
795
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000544s
796
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
797
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000657s
798
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
799
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005459999999999999s
800
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
801
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000491s
802
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
803
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001539s
804
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
805
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000947s
806
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
807
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000767s
808
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
809
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000969s
810
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
811
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010170000000000001s
812
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
813
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001561s
814
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
815
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007549999999999999s
816
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
817
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000505s
818
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abd'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043abe'), "actions"=>["woot"], "conditions"=>{}, "priori...
819
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008200000000000001s
820
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
821
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000734s
822
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
823
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012070000000000002s
824
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ac0'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0305f366a35656d043ac1'), "actions"=>["woot"], "conditions"=>{"equals"=>...
825
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0017670000000000001s
826
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
827
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007995s
828
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
829
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004771999999999999s
830
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03060366a35656d043ac2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03060366a35656d043ac3'), "actions"=>["woot"], "conditions"=>{}, "priori...
831
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001921s
832
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
833
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00073s
834
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
835
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004307s
836
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
837
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002259s
838
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
839
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0015739999999999999s
840
- MONGODB | Topology type 'unknown' initializing.
841
- MONGODB | Server localhost:27017 initializing.
842
- MONGODB | Topology type 'unknown' changed to type 'single'.
843
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
844
- MONGODB | There was a change in the members of the 'single' topology.
845
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
846
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001577s
847
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
848
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000563s
849
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
850
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000722s
851
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
852
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000637s
853
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
854
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.005487s
855
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
856
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001097s
857
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
858
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004861s
859
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
860
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000855s
861
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
862
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001907s
863
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
864
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001915s
865
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc101'), "actions"=>["woot"], "conditions"=>{"equals"=>...
866
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000507s
867
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
868
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0024690000000000003s
869
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
870
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001112s
871
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03071366a35675dfbc100')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
872
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0015970000000000001s
873
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
874
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008190000000000001s
875
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
876
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001519s
877
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc102'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc103'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
878
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004706999999999999s
879
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
880
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00077s
881
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
882
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007838s
883
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc104'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
884
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0046s
885
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc105'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
886
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001213s
887
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
888
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0052499999999999995s
889
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
890
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005759999999999999s
891
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
892
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0026910000000000002s
893
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
894
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000454s
895
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
896
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00074s
897
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
898
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002242s
899
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
900
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003157s
901
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
902
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.012409s
903
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
904
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0040939999999999995s
905
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
906
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001591s
907
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
908
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001043s
909
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
910
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000902s
911
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc106'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc107'), "actions"=>["woot"], "conditions"=>{}, "priori...
912
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00082s
913
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
914
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001472s
915
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
916
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000758s
917
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc109'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc10a'), "actions"=>["woot"], "conditions"=>{"equals"=>...
918
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001163s
919
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
920
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0014960000000000002s
921
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
922
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000646s
923
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc10b'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03071366a35675dfbc10c'), "actions"=>["woot"], "conditions"=>{}, "priori...
924
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001505s
925
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
926
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007459999999999999s
927
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
928
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00091s
929
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
930
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0043300000000000005s
931
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
932
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001949s
933
- MONGODB | Topology type 'unknown' initializing.
934
- MONGODB | Server localhost:27017 initializing.
935
- MONGODB | Topology type 'unknown' changed to type 'single'.
936
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
937
- MONGODB | There was a change in the members of the 'single' topology.
938
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
939
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007703s
940
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
941
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000484s
942
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
943
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000539s
944
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
945
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0019479999999999999s
946
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
947
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000669s
948
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
949
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000402s
950
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
951
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001324s
952
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
953
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0025689999999999997s
954
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
955
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006682s
956
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
957
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0015680000000000002s
958
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a334'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a335'), "actions"=>["woot"], "conditions"=>{"equals"=>...
959
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0038970000000000003s
960
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
961
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004631s
962
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
963
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000774s
964
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a336'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a337'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
965
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.009011s
966
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
967
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000568s
968
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
969
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002139s
970
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a338'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
971
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002157s
972
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a339'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
973
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000812s
974
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
975
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001606s
976
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
977
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000649s
978
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
979
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002199s
980
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
981
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000791s
982
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
983
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.023497999999999998s
984
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
985
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00605s
986
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
987
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000766s
988
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
989
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000577s
990
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
991
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0015960000000000002s
992
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
993
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000488s
994
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
995
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001207s
996
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
997
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001465s
998
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33b'), "actions"=>["woot"], "conditions"=>{}, "priori...
999
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0008500000000000001s
1000
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1001
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00236s
1002
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1003
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004609s
1004
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33d'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33e'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1005
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000676s
1006
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1007
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001963s
1008
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1009
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000614s
1010
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a33f'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03124366a356902f8a340'), "actions"=>["woot"], "conditions"=>{}, "priori...
1011
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001185s
1012
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1013
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.012136000000000001s
1014
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1015
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009480000000000001s
1016
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1017
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0024370000000000004s
1018
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1019
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000852s
1020
- MONGODB | Topology type 'unknown' initializing.
1021
- MONGODB | Server localhost:27017 initializing.
1022
- MONGODB | Topology type 'unknown' changed to type 'single'.
1023
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1024
- MONGODB | There was a change in the members of the 'single' topology.
1025
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1026
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001379s
1027
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1028
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000431s
1029
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae140'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae141'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1030
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000807s
1031
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1032
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0020970000000000003s
1033
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1034
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.023261s
1035
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae142'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0313d366a356ac58ae143'), "actions"=>["woot"], "conditions"=>{}, "priori...
1036
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000646s
1037
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1038
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00037900000000000005s
1039
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1040
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000501s
1041
- MONGODB | Topology type 'unknown' initializing.
1042
- MONGODB | Server localhost:27017 initializing.
1043
- MONGODB | Topology type 'unknown' changed to type 'single'.
1044
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1045
- MONGODB | There was a change in the members of the 'single' topology.
1046
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1047
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000972s
1048
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1049
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000415s
1050
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8d'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1051
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000477s
1052
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1053
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00034899999999999997s
1054
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1055
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000816s
1056
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0316b366a356b729caf8f'), "actions"=>["woot"], "conditions"=>{}, "priori...
1057
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002689s
1058
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1059
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.017956s
1060
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1061
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000888s
1062
- MONGODB | Topology type 'unknown' initializing.
1063
- MONGODB | Server localhost:27017 initializing.
1064
- MONGODB | Topology type 'unknown' changed to type 'single'.
1065
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1066
- MONGODB | There was a change in the members of the 'single' topology.
1067
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1068
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002472s
1069
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1070
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000798s
1071
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f1'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f2'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1072
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.017338s
1073
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1074
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.005604s
1075
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1076
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001124s
1077
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f3'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03181366a356c42dfe8f4'), "actions"=>["woot"], "conditions"=>{}, "priori...
1078
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001467s
1079
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1080
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.01139s
1081
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1082
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00449s
1083
- MONGODB | Topology type 'unknown' initializing.
1084
- MONGODB | Server localhost:27017 initializing.
1085
- MONGODB | Topology type 'unknown' changed to type 'single'.
1086
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1087
- MONGODB | There was a change in the members of the 'single' topology.
1088
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1089
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001106s
1090
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1091
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001952s
1092
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb4877'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb4878'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1093
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003777s
1094
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1095
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001681s
1096
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1097
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011535s
1098
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb4879'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0319c366a356cecfb487a'), "actions"=>["woot"], "conditions"=>{}, "priori...
1099
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004839s
1100
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1101
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000768s
1102
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1103
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003918s
1104
- MONGODB | Topology type 'unknown' initializing.
1105
- MONGODB | Server localhost:27017 initializing.
1106
- MONGODB | Topology type 'unknown' changed to type 'single'.
1107
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1108
- MONGODB | There was a change in the members of the 'single' topology.
1109
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1110
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000946s
1111
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1112
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000428s
1113
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7ea'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7eb'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1114
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0010350000000000001s
1115
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1116
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000889s
1117
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1118
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003329s
1119
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7ec'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031b2366a356da56af7ed'), "actions"=>["woot"], "conditions"=>{}, "priori...
1120
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.010029s
1121
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1122
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000581s
1123
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1124
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0019920000000000003s
1125
- MONGODB | Topology type 'unknown' initializing.
1126
- MONGODB | Server localhost:27017 initializing.
1127
- MONGODB | Topology type 'unknown' changed to type 'single'.
1128
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1129
- MONGODB | There was a change in the members of the 'single' topology.
1130
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1131
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000981s
1132
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1133
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00064s
1134
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d3'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1135
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003882s
1136
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1137
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003317s
1138
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1139
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.012206s
1140
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d4'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b031c3366a356e614ca5d5'), "actions"=>["woot"], "conditions"=>{}, "priori...
1141
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000641s
1142
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1143
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006095000000000001s
1144
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1145
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004554s
1146
- MONGODB | Topology type 'unknown' initializing.
1147
- MONGODB | Server localhost:27017 initializing.
1148
- MONGODB | Topology type 'unknown' changed to type 'single'.
1149
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1150
- MONGODB | There was a change in the members of the 'single' topology.
1151
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1152
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0018160000000000001s
1153
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1154
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001314s
1155
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157b'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1156
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000758s
1157
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1158
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000925s
1159
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1160
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00379s
1161
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03247366a3574a562157d'), "actions"=>["woot"], "conditions"=>{}, "priori...
1162
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00165s
1163
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1164
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0069619999999999994s
1165
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1166
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000972s
1167
- MONGODB | Topology type 'unknown' initializing.
1168
- MONGODB | Server localhost:27017 initializing.
1169
- MONGODB | Topology type 'unknown' changed to type 'single'.
1170
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1171
- MONGODB | There was a change in the members of the 'single' topology.
1172
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1173
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00104s
1174
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1175
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000439s
1176
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368d8'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368d9'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1177
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0015580000000000001s
1178
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1179
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010264s
1180
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1181
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001155s
1182
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368da'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0327b366a3575aa4368db'), "actions"=>["woot"], "conditions"=>{}, "priori...
1183
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.005533000000000001s
1184
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1185
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000642s
1186
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1187
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000573s
1188
- MONGODB | Topology type 'unknown' initializing.
1189
- MONGODB | Server localhost:27017 initializing.
1190
- MONGODB | Topology type 'unknown' changed to type 'single'.
1191
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1192
- MONGODB | There was a change in the members of the 'single' topology.
1193
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1194
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001003s
1195
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1196
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000369s
1197
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1198
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00047599999999999997s
1199
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1200
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000418s
1201
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1202
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013469999999999999s
1203
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1204
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005813s
1205
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1206
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0014789999999999998s
1207
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1208
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0023480000000000003s
1209
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1210
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00071s
1211
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1212
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000719s
1213
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90832'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1214
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004901s
1215
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1216
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.00505s
1217
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1218
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0048519999999999995s
1219
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03281366a3576d3a90831')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1220
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001232s
1221
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1222
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0028620000000000004s
1223
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1224
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000708s
1225
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90833'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90834'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
1226
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000751s
1227
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1228
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000642s
1229
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1230
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006050000000000001s
1231
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90835'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
1232
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000682s
1233
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90836'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
1234
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004042s
1235
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1236
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000835s
1237
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1238
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000772s
1239
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1240
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001033s
1241
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1242
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006749999999999999s
1243
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1244
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003973s
1245
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1246
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000718s
1247
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1248
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000772s
1249
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1250
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000572s
1251
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1252
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000599s
1253
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1254
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005579999999999999s
1255
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1256
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000651s
1257
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1258
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003081s
1259
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90837'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a90838'), "actions"=>["woot"], "conditions"=>{}, "priori...
1260
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00098s
1261
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1262
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000709s
1263
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1264
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008179999999999999s
1265
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083a'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083b'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1266
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002477s
1267
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1268
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001585s
1269
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1270
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001854s
1271
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03281366a3576d3a9083d'), "actions"=>["woot"], "conditions"=>{}, "priori...
1272
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00572s
1273
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1274
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009975s
1275
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1276
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001137s
1277
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1278
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008950000000000001s
1279
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1280
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005639s
1281
- MONGODB | Topology type 'unknown' initializing.
1282
- MONGODB | Server localhost:27017 initializing.
1283
- MONGODB | Topology type 'unknown' changed to type 'single'.
1284
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1285
- MONGODB | There was a change in the members of the 'single' topology.
1286
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1287
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001119s
1288
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1289
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008049999999999999s
1290
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1291
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000808s
1292
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1293
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000639s
1294
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1295
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004185s
1296
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1297
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.017797999999999998s
1298
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1299
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.012188999999999998s
1300
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1301
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.008622999999999999s
1302
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1303
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000687s
1304
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1305
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000771s
1306
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc06998'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1307
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000943s
1308
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1309
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0014110000000000001s
1310
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1311
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.004751s
1312
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032c6366a35785fc06997')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1313
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000664s
1314
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1315
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000599s
1316
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1317
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000509s
1318
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc06999'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699a'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
1319
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004372s
1320
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1321
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000606s
1322
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1323
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001243s
1324
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699b'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
1325
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00511s
1326
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699c'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
1327
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004834s
1328
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1329
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000816s
1330
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1331
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001619s
1332
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1333
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00091s
1334
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1335
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000671s
1336
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1337
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00168s
1338
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1339
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0011250000000000001s
1340
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1341
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006790999999999999s
1342
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1343
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000736s
1344
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1345
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000826s
1346
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1347
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000663s
1348
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1349
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003718s
1350
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1351
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0024720000000000002s
1352
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699d'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc0699e'), "actions"=>["woot"], "conditions"=>{}, "priori...
1353
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000812s
1354
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1355
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000629s
1356
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1357
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00068s
1358
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a0'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a1'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1359
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001781s
1360
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1361
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002077s
1362
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1363
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004068s
1364
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a2'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032c6366a35785fc069a3'), "actions"=>["woot"], "conditions"=>{}, "priori...
1365
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000956s
1366
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1367
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000896s
1368
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1369
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000556s
1370
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1371
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000666s
1372
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1373
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00069s
1374
- MONGODB | Topology type 'unknown' initializing.
1375
- MONGODB | Server localhost:27017 initializing.
1376
- MONGODB | Topology type 'unknown' changed to type 'single'.
1377
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1378
- MONGODB | There was a change in the members of the 'single' topology.
1379
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1380
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001185s
1381
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1382
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000466s
1383
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1384
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005939999999999999s
1385
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1386
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000495s
1387
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1388
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000839s
1389
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1390
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001401s
1391
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1392
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009496s
1393
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1394
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.013371s
1395
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1396
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001902s
1397
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1398
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000663s
1399
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bc'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1400
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000633s
1401
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1402
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0016899999999999999s
1403
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1404
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001614s
1405
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bb')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1406
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001593s
1407
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1408
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007729999999999999s
1409
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1410
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000626s
1411
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bd'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699be'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
1412
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000893s
1413
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1414
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003022s
1415
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1416
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000607s
1417
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699bf'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
1418
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004001s
1419
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d4366a3579ecb699c0'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
1420
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001064s
1421
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1422
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008399999999999999s
1423
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1424
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000655s
1425
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1426
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001008s
1427
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1428
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0014110000000000001s
1429
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1430
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000882s
1431
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1432
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000461s
1433
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1434
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006259999999999999s
1435
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1436
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0018720000000000002s
1437
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1438
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00059s
1439
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1440
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0031750000000000003s
1441
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1442
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000607s
1443
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1444
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000961s
1445
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c1'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c2'), "actions"=>["woot"], "conditions"=>{}, "priori...
1446
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0006770000000000001s
1447
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1448
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00127s
1449
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1450
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006208s
1451
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c4'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c5'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1452
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00063s
1453
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1454
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000577s
1455
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1456
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005870000000000001s
1457
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c6'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b032d5366a3579ecb699c7'), "actions"=>["woot"], "conditions"=>{}, "priori...
1458
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000615s
1459
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1460
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008799999999999999s
1461
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1462
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000791s
1463
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1464
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000517s
1465
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1466
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009390000000000001s
1467
- MONGODB | Topology type 'unknown' initializing.
1468
- MONGODB | Server localhost:27017 initializing.
1469
- MONGODB | Topology type 'unknown' changed to type 'single'.
1470
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1471
- MONGODB | There was a change in the members of the 'single' topology.
1472
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1473
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0012000000000000001s
1474
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1475
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000713s
1476
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1477
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000492s
1478
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1479
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000448s
1480
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1481
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013210000000000001s
1482
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1483
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001432s
1484
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1485
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001265s
1486
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1487
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007959999999999999s
1488
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1489
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007049999999999999s
1490
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1491
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005560000000000001s
1492
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e39'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1493
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.00098s
1494
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1495
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.001066s
1496
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1497
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000974s
1498
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e38')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1499
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0006180000000000001s
1500
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1501
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006370000000000001s
1502
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1503
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000543s
1504
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3a'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3b'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
1505
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007379999999999999s
1506
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1507
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00123s
1508
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1509
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.020321s
1510
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3c'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
1511
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001148s
1512
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337c366a3581d02e5e3d'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
1513
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.004674s
1514
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1515
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007040000000000001s
1516
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1517
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0028090000000000003s
1518
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1519
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00068s
1520
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1521
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000632s
1522
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1523
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000809s
1524
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1525
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000816s
1526
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1527
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000698s
1528
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1529
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001113s
1530
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1531
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000706s
1532
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1533
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001861s
1534
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1535
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010350000000000001s
1536
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1537
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00059s
1538
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e3e'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e3f'), "actions"=>["woot"], "conditions"=>{}, "priori...
1539
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001895s
1540
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1541
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000939s
1542
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1543
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0028109999999999997s
1544
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e41'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e42'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1545
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003451s
1546
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1547
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000749s
1548
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1549
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006850000000000001s
1550
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e43'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b0337d366a3581d02e5e44'), "actions"=>["woot"], "conditions"=>{}, "priori...
1551
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007059999999999999s
1552
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1553
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006399999999999999s
1554
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1555
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000635s
1556
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1557
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007610000000000001s
1558
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1559
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002933s
1560
- MONGODB | Topology type 'unknown' initializing.
1561
- MONGODB | Server localhost:27017 initializing.
1562
- MONGODB | Topology type 'unknown' changed to type 'single'.
1563
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1564
- MONGODB | There was a change in the members of the 'single' topology.
1565
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1566
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000968s
1567
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1568
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00037900000000000005s
1569
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1570
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000649s
1571
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1572
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000512s
1573
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1574
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0060940000000000005s
1575
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1576
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000768s
1577
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1578
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0069700000000000005s
1579
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1580
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005895s
1581
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1582
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001222s
1583
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1584
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000846s
1585
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27c'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27d'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1586
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0032860000000000003s
1587
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03399366a35839000d27c')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"less_than"=>{"targetable_int"=>4}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1588
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0010509999999999999s
1589
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03399366a35839000d27c')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"includes"=>{"targetable_array"=>"a"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1590
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.000888s
1591
- MONGODB | localhost:27017 | scram_dummy_test.update | STARTED | {"update"=>"scram_policies", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58b03399366a35839000d27c')}, "u"=>{"$set"=>{"targets.0.conditions"=>{"equals"=>{"owner"=>"*holder"}}}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
1592
- MONGODB | localhost:27017 | scram_dummy_test.update | SUCCEEDED | 0.0012419999999999998s
1593
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1594
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000609s
1595
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1596
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000677s
1597
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27e'), "priority"=>0, "context"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d27f'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target...
1598
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001716s
1599
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1600
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010760000000000001s
1601
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1602
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0025559999999999997s
1603
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d280'), "priority"=>0, "context"=>"non-existent-model"}], "ordered"=>true}
1604
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000754s
1605
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d281'), "priority"=>0, "context"=>"Scram::SimpleHolder"}], "ordered"=>true}
1606
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003698s
1607
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1608
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003863s
1609
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1610
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000697s
1611
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1612
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.011146s
1613
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1614
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007157s
1615
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1616
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009310000000000001s
1617
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1618
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006259999999999999s
1619
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1620
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000653s
1621
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1622
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000598s
1623
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1624
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003235s
1625
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1626
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005780000000000001s
1627
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1628
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007899999999999999s
1629
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1630
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005679999999999999s
1631
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d282'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d283'), "actions"=>["woot"], "conditions"=>{}, "priori...
1632
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.003153s
1633
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1634
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001777s
1635
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1636
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000793s
1637
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d285'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d286'), "actions"=>["woot"], "conditions"=>{"equals"=>...
1638
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0007639999999999999s
1639
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1640
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0017259999999999999s
1641
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1642
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0007019999999999999s
1643
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d287'), "priority"=>0, "context"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03399366a35839000d288'), "actions"=>["woot"], "conditions"=>{}, "priori...
1644
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0006349999999999999s
1645
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1646
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006580000000000001s
1647
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1648
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001923s
1649
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1650
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001316s
1651
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1652
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000678s
1653
- MONGODB | Topology type 'unknown' initializing.
1654
- MONGODB | Server localhost:27017 initializing.
1655
- MONGODB | Topology type 'unknown' changed to type 'single'.
1656
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1657
- MONGODB | There was a change in the members of the 'single' topology.
1658
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1659
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001655s
1660
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1661
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000476s
1662
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1663
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00109s
1664
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1665
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00051s
1666
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1667
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.006545s
1668
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1669
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000775s
1670
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1671
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008217s
1672
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1673
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000589s
1674
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1675
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003128s
1676
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1677
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00528s
1678
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1679
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000602s
1680
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1681
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000503s
1682
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1683
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000682s
1684
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1685
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000538s
1686
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1687
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0029119999999999997s
1688
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1689
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0023759999999999996s
1690
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1691
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000688s
1692
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1693
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0011740000000000001s
1694
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1695
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010012s
1696
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1697
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011871s
1698
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1699
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.029895s
1700
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1701
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000782s
1702
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1703
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000652s
1704
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1705
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.006889s
1706
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1707
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00098s
1708
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1709
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0009649999999999999s
1710
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1711
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001235s
1712
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1713
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000461s
1714
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1715
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000686s
1716
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1717
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000566s
1718
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1719
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003879s
1720
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1721
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008979999999999999s
1722
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1723
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0020659999999999997s
1724
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1725
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000672s
1726
- MONGODB | Topology type 'unknown' initializing.
1727
- MONGODB | Server localhost:27017 initializing.
1728
- MONGODB | Topology type 'unknown' changed to type 'single'.
1729
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1730
- MONGODB | There was a change in the members of the 'single' topology.
1731
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1732
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000929s
1733
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1734
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00037799999999999997s
1735
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1736
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002238s
1737
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1738
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001507s
1739
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1740
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003085s
1741
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1742
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.011074s
1743
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1744
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009480000000000001s
1745
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1746
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003926000000000001s
1747
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1748
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001848s
1749
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1750
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000866s
1751
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1752
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000819s
1753
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1754
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001912s
1755
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1756
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0031680000000000002s
1757
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1758
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.016037s
1759
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1760
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.038416s
1761
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1762
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003112s
1763
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1764
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006810000000000001s
1765
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1766
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005690000000000001s
1767
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1768
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000682s
1769
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1770
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.026184000000000002s
1771
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1772
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000686s
1773
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1774
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000856s
1775
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1776
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000612s
1777
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1778
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000593s
1779
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1780
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006569999999999999s
1781
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1782
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000567s
1783
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1784
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00078s
1785
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1786
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000509s
1787
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1788
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00069s
1789
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1790
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000675s
1791
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1792
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000624s
1793
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1794
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000533s
1795
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1796
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001042s
1797
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1798
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006389999999999999s
1799
- MONGODB | Topology type 'unknown' initializing.
1800
- MONGODB | Server localhost:27017 initializing.
1801
- MONGODB | Topology type 'unknown' changed to type 'single'.
1802
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1803
- MONGODB | There was a change in the members of the 'single' topology.
1804
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1805
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010589999999999998s
1806
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1807
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00041600000000000003s
1808
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1809
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000496s
1810
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1811
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000332s
1812
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1813
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008849999999999999s
1814
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1815
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001546s
1816
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1817
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001933s
1818
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1819
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003489s
1820
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1821
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000677s
1822
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1823
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001889s
1824
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03a54366a350974e79e57'), "priority"=>0, "name"=>"Scram::TestModel", "targets"=>[{"_id"=>BSON::ObjectId('58b03a54366a350974e79e58'), "actions"=>["woot"], "conditions"=>{"equals"=>{"t...
1825
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000671s
1826
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1827
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000567s
1828
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1829
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00054s
1830
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1831
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000601s
1832
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1833
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008579999999999999s
1834
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1835
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000843s
1836
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1837
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001323s
1838
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1839
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013880000000000001s
1840
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1841
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.005089s
1842
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1843
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000547s
1844
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1845
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000403s
1846
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1847
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000691s
1848
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1849
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001649s
1850
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1851
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0028020000000000002s
1852
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1853
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000969s
1854
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1855
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00823s
1856
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1857
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00538s
1858
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1859
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001801s
1860
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1861
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000901s
1862
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1863
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003817s
1864
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1865
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0006619999999999999s
1866
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1867
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000753s
1868
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1869
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002371s
1870
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1871
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003383s
1872
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1873
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0016350000000000002s
1874
- MONGODB | Topology type 'unknown' initializing.
1875
- MONGODB | Server localhost:27017 initializing.
1876
- MONGODB | Topology type 'unknown' changed to type 'single'.
1877
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1878
- MONGODB | There was a change in the members of the 'single' topology.
1879
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1880
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001125s
1881
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1882
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00037600000000000003s
1883
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1884
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000616s
1885
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1886
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00043s
1887
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1888
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00217s
1889
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1890
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000762s
1891
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1892
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002081s
1893
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1894
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0026409999999999997s
1895
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1896
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002786s
1897
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1898
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000918s
1899
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1900
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006659999999999999s
1901
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1902
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000648s
1903
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1904
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001597s
1905
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1906
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002121s
1907
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1908
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0015830000000000002s
1909
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1910
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002847s
1911
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1912
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006580000000000001s
1913
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1914
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001139s
1915
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1916
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013859999999999999s
1917
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1918
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002045s
1919
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1920
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001859s
1921
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1922
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003259s
1923
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1924
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007599999999999999s
1925
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1926
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0017430000000000002s
1927
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1928
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002125s
1929
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1930
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0010739999999999999s
1931
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1932
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010600000000000002s
1933
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1934
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00045700000000000005s
1935
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1936
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000762s
1937
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1938
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000839s
1939
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1940
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000719s
1941
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1942
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0029769999999999996s
1943
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1944
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0005719999999999999s
1945
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1946
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000425s
1947
- MONGODB | Topology type 'unknown' initializing.
1948
- MONGODB | Server localhost:27017 initializing.
1949
- MONGODB | Topology type 'unknown' changed to type 'single'.
1950
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
1951
- MONGODB | There was a change in the members of the 'single' topology.
1952
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1953
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001047s
1954
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1955
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00054s
1956
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1957
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013670000000000002s
1958
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1959
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005420000000000001s
1960
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1961
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0023870000000000002s
1962
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1963
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000709s
1964
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1965
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.011608s
1966
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1967
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.008511s
1968
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1969
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009670000000000001s
1970
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1971
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00072s
1972
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1973
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001661s
1974
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1975
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003728s
1976
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03a60366a350cbb29a03e'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03a60366a350cbb29a03f'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
1977
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0015480000000000001s
1978
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1979
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000653s
1980
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1981
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000803s
1982
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1983
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000657s
1984
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1985
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003271s
1986
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1987
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007419999999999999s
1988
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1989
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00101s
1990
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1991
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004124s
1992
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1993
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004711s
1994
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1995
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001112s
1996
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
1997
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000402s
1998
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
1999
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000764s
2000
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2001
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000547s
2002
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2003
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00183s
2004
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2005
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001332s
2006
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2007
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007589999999999999s
2008
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2009
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000732s
2010
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2011
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.010438999999999999s
2012
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2013
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.013803s
2014
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2015
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.051476s
2016
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2017
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002237s
2018
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2019
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000751s
2020
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2021
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000654s
2022
- MONGODB | Topology type 'unknown' initializing.
2023
- MONGODB | Server localhost:27017 initializing.
2024
- MONGODB | Topology type 'unknown' changed to type 'single'.
2025
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
2026
- MONGODB | There was a change in the members of the 'single' topology.
2027
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2028
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001663s
2029
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2030
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00044100000000000004s
2031
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2032
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000912s
2033
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2034
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005499999999999999s
2035
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2036
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000666s
2037
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2038
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007607s
2039
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2040
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0069630000000000004s
2041
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2042
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0013490000000000002s
2043
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2044
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00414s
2045
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2046
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000597s
2047
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2048
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004665s
2049
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2050
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005179999999999999s
2051
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03a9b366a350e363d2006'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03a9b366a350e363d2007'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
2052
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.000857s
2053
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2054
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0010119999999999999s
2055
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2056
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00055s
2057
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2058
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001035s
2059
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2060
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000837s
2061
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2062
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0006699999999999999s
2063
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2064
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000683s
2065
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2066
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003318s
2067
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2068
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000565s
2069
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2070
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002061s
2071
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2072
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003751s
2073
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2074
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000949s
2075
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2076
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000923s
2077
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2078
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000675s
2079
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2080
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008179999999999999s
2081
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2082
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001088s
2083
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2084
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0068790000000000006s
2085
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2086
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001052s
2087
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2088
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000566s
2089
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2090
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004161s
2091
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2092
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0020570000000000002s
2093
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2094
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001144s
2095
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2096
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001675s
2097
- MONGODB | Topology type 'unknown' initializing.
2098
- MONGODB | Server localhost:27017 initializing.
2099
- MONGODB | Topology type 'unknown' changed to type 'single'.
2100
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
2101
- MONGODB | There was a change in the members of the 'single' topology.
2102
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2103
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002472s
2104
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2105
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000706s
2106
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2107
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000531s
2108
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2109
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000357s
2110
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2111
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0007000000000000001s
2112
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2113
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.008803s
2114
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2115
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008171s
2116
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2117
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001718s
2118
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2119
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004197s
2120
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2121
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000503s
2122
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2123
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000868s
2124
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2125
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008320000000000001s
2126
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03af5366a350feaf13158'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03af5366a350feaf13159'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
2127
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.002893s
2128
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2129
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000792s
2130
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2131
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007452s
2132
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2133
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001061s
2134
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2135
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000552s
2136
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2137
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0013280000000000002s
2138
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2139
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001078s
2140
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2141
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008489999999999999s
2142
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2143
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004458s
2144
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2145
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00328s
2146
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2147
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001317s
2148
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2149
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.008584s
2150
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2151
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004461s
2152
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2153
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001564s
2154
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2155
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001227s
2156
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2157
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001304s
2158
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2159
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000669s
2160
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2161
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.007124s
2162
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2163
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001419s
2164
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2165
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004935999999999999s
2166
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2167
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000617s
2168
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2169
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000868s
2170
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2171
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000531s
2172
- MONGODB | Topology type 'unknown' initializing.
2173
- MONGODB | Server localhost:27017 initializing.
2174
- MONGODB | Topology type 'unknown' changed to type 'single'.
2175
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
2176
- MONGODB | There was a change in the members of the 'single' topology.
2177
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2178
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001003s
2179
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2180
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00045000000000000004s
2181
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2182
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00048800000000000004s
2183
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2184
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000318s
2185
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2186
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000579s
2187
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2188
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000887s
2189
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2190
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000599s
2191
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2192
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000378s
2193
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2194
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000638s
2195
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2196
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000599s
2197
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2198
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.013456999999999998s
2199
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2200
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002441s
2201
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03b2e366a351183fe0f66'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03b2e366a351183fe0f67'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
2202
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.001503s
2203
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2204
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001744s
2205
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2206
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002745s
2207
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2208
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003583s
2209
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2210
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002042s
2211
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2212
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001687s
2213
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2214
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003181s
2215
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2216
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.009023999999999999s
2217
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2218
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001703s
2219
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2220
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000629s
2221
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2222
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005549999999999999s
2223
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2224
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.13264700000000001s
2225
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2226
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.004421s
2227
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2228
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00778s
2229
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2230
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0029669999999999996s
2231
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2232
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.004653s
2233
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2234
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0012670000000000001s
2235
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2236
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001088s
2237
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2238
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001312s
2239
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2240
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000943s
2241
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2242
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007876s
2243
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2244
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001241s
2245
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2246
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000593s
2247
- MONGODB | Topology type 'unknown' initializing.
2248
- MONGODB | Server localhost:27017 initializing.
2249
- MONGODB | Topology type 'unknown' changed to type 'single'.
2250
- MONGODB | Server description for localhost:27017 changed from 'unknown' to 'standalone'.
2251
- MONGODB | There was a change in the members of the 'single' topology.
2252
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2253
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009360000000000001s
2254
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2255
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001608s
2256
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2257
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00053s
2258
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2259
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000414s
2260
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2261
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00071s
2262
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2263
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002928s
2264
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2265
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000993s
2266
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2267
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001472s
2268
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2269
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002048s
2270
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2271
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0011690000000000001s
2272
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2273
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003564s
2274
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2275
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001887s
2276
- MONGODB | localhost:27017 | scram_dummy_test.insert | STARTED | {"insert"=>"scram_policies", "documents"=>[{"_id"=>BSON::ObjectId('58b03c3a366a351534c0d8ac'), "priority"=>0, "name"=>"globals", "targets"=>[{"_id"=>BSON::ObjectId('58b03c3a366a351534c0d8ad'), "actions"=>["woot"], "conditions"=>{"equals"=>{"*target_na...
2277
- MONGODB | localhost:27017 | scram_dummy_test.insert | SUCCEEDED | 0.0025480000000000004s
2278
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2279
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002313s
2280
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2281
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.007261999999999999s
2282
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2283
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001677s
2284
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2285
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000797s
2286
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2287
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000701s
2288
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2289
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.00059s
2290
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2291
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000856s
2292
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2293
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000729s
2294
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2295
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.001212s
2296
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2297
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000878s
2298
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2299
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003933s
2300
- MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2301
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003065s
2302
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2303
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0051400000000000005s
57
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003343s
2304
58
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2305
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.010058s
59
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.009178s
2306
60
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2307
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.00365s
61
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.003807s
2308
62
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2309
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0005679999999999999s
63
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0008810000000000001s
2310
64
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2311
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0009029999999999999s
65
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000541s
2312
66
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2313
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.000604s
67
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.001152s
2314
68
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2315
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.0008770000000000001s
69
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000953s
2316
70
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2317
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003464s
71
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.0031910000000000003s
2318
72
  MONGODB | localhost:27017 | scram_dummy_test.listCollections | STARTED | {"listCollections"=>1, "cursor"=>{}, "filter"=>{:name=>{"$not"=>/system\.|\$/}}}
2319
- MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.002925s
73
+ MONGODB | localhost:27017 | scram_dummy_test.listCollections | SUCCEEDED | 0.000962s
2320
74
  MONGODB | localhost:27017 | scram_dummy_test.delete | STARTED | {"delete"=>"scram_policies", "deletes"=>[{"q"=>{}, "limit"=>0}], "ordered"=>true}
2321
- MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.003259s
75
+ MONGODB | localhost:27017 | scram_dummy_test.delete | SUCCEEDED | 0.002934s