wonkavision 0.5.2 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,10 @@
1
+ ==0.5.4
2
+ * Added ability to specify correlation_ids per event binding in addition to a global correlation specification, so
3
+ certain messages can be correlated to the business activity using arbitrary event / model id pairs.
4
+
5
+ ==0.5.3
6
+ * Added 'array' expression to mapping DSL to allow for the easy mapping of collection of items from incoming messages
7
+
1
8
  == 0.5.2
2
9
  * Added callbacks to event handler, before_event and after_event. Refactored event handling hierarchy to be a little
3
10
  less functional and a little more object oriented.
data/lib/wonkavision.rb CHANGED
@@ -17,6 +17,7 @@ dir = File.dirname(__FILE__)
17
17
  "message_mapper",
18
18
  "plugins/callbacks",
19
19
  "plugins/event_handling",
20
+ "plugins/business_activity/event_binding",
20
21
  "plugins/business_activity",
21
22
  "plugins/timeline",
22
23
  "acts_as_oompa_loompa",
@@ -4,6 +4,7 @@ module Wonkavision
4
4
  attr_reader :name, :events, :options
5
5
 
6
6
  def initialize(name,handler,*args)
7
+ args.flatten!
7
8
  @options = args.extract_options!
8
9
  @handler = handler
9
10
  @name = name
@@ -9,8 +9,6 @@ module Wonkavision
9
9
  @context_stack.push(context)
10
10
  end
11
11
 
12
-
13
-
14
12
  def context
15
13
  @context_stack[-1]
16
14
  end
@@ -50,6 +48,28 @@ module Wonkavision
50
48
  self[field_name] = child
51
49
  end
52
50
 
51
+ def array(source,options={},&block)
52
+ if (source.is_a?(Hash))
53
+ field_name = source.keys[0]
54
+ ctx = source.keys[1]
55
+ else
56
+ field_name = source
57
+ ctx = extract_value_from_context(context,field_name)
58
+ end
59
+ result = []
60
+ map_name = options.delete(:map_name)
61
+ ctx.each do |item|
62
+ if (map_name)
63
+ child = MessageMapper.execute(map_name,item)
64
+ else
65
+ child = Map.new(item)
66
+ child.instance_eval(&block)
67
+ end
68
+ result << child
69
+ end
70
+ self[field_name] = result
71
+ end
72
+
53
73
  def string(*args)
54
74
  value(*args) {to_s}
55
75
  end
@@ -109,18 +129,25 @@ module Wonkavision
109
129
  end
110
130
  else
111
131
  args.each do |field_name|
112
- if context.respond_to?(field_name.to_sym)
113
- value = context.instance_eval("self.#{field_name}")
114
- elsif context.respond_to?(:[])
115
- value = context[field_name]
116
- else
117
- value = nil
118
- end
119
- value = value.instance_eval(&block) if block
132
+ value = extract_value_from_context(context,field_name,block)
120
133
  self[field_name] = value
121
134
  end
122
135
  end
123
136
  end
137
+ alias integer int
138
+
139
+ private
140
+ def extract_value_from_context(context,field_name,block=nil)
141
+ if context.respond_to?(field_name.to_sym)
142
+ value = context.instance_eval("self.#{field_name}")
143
+ elsif context.respond_to?(:[])
144
+ value = context[field_name]
145
+ else
146
+ value = nil
147
+ end
148
+ value = value.instance_eval(&block) if block
149
+ value
150
+ end
124
151
  end
125
152
  end
126
153
  end
@@ -6,6 +6,7 @@ module Wonkavision
6
6
  @@all ||= []
7
7
  end
8
8
 
9
+
9
10
  def self.configure(activity,options={})
10
11
  activity.write_inheritable_attribute :business_activity_options, {}
11
12
  activity.class_inheritable_reader :business_activity_options
@@ -16,10 +17,26 @@ module Wonkavision
16
17
  BusinessActivity.all << activity
17
18
  end
18
19
 
20
+ def self.normalize_correlation_ids(*args)
21
+ model_field,event_field = if args.length == 1 then
22
+ case args[0]
23
+ when Hash then [args[0][:model], args[0][:event] || args[0][:model]]
24
+ else [args[0],args[0]]
25
+ end
26
+ else
27
+ [args[0],args[1] || args[0]]
28
+ end
29
+ {:model=>model_field,:event=>event_field}
30
+ end
31
+
19
32
  module ClassMethods
20
33
  def instantiate_handler(event_context)
21
- correlation_id = event_context.data[event_correlation_id_key.to_s]
22
- find_activity_instance(correlation_id_field,correlation_id)
34
+ correlation = event_context.binding.correlation
35
+ event_id = correlation ? (correlation[:event] || event_correlation_id_key) : event_correlation_id_key
36
+ model_id = correlation ? (correlation[:model] || correlation_id_field) : correlation_id_field
37
+
38
+ correlation_id = event_context.data[event_id.to_s]
39
+ find_activity_instance(model_id,correlation_id)
23
40
  end
24
41
 
25
42
  def event(name,*args,&block)
@@ -44,23 +61,19 @@ module Wonkavision
44
61
 
45
62
  def correlate_by(*args)
46
63
  return {:model=>correlation_id_field, :event=>event_correlation_id_key} if args.blank?
47
- model_field,event_field = if args.length == 1 then
48
- case args[0]
49
- when Hash then [args[0][:model], args[0][:event] || args[0][:model]]
50
- else [args[0],args[0]]
51
- end
52
- else
53
- [args[0],args[1] || args[0]]
54
- end
55
64
 
56
- business_activity_options[:correlation_id_field] = model_field
57
- business_activity_options[:event_correlation_id_key] = event_field
65
+ correlation = BusinessActivity.normalize_correlation_ids(*args)
66
+
67
+ business_activity_options[:correlation_id_field] = correlation[:model]
68
+ business_activity_options[:event_correlation_id_key] = correlation[:event]
58
69
 
59
70
  define_document_key correlation_id_field, String, :index=>true
60
- correlation_ids << {:model=>model_field.to_s, :event=>event_field.to_s}
71
+ correlation_ids << correlation
61
72
  end
62
73
 
63
-
74
+ def create_binding(name,handler,*args)
75
+ Wonkavision::Plugins::BusinessActivity::EventBinding.new(name,handler,*args)
76
+ end
64
77
 
65
78
  end
66
79
 
@@ -0,0 +1,16 @@
1
+ module Wonkavision
2
+ module Plugins
3
+ module BusinessActivity
4
+ class EventBinding < Wonkavision::EventBinding
5
+ attr_reader :correlation
6
+ def initialize(*args)
7
+ super(*args)
8
+ if (correlation_args = @options.delete(:correlate_by))
9
+ correlation_args = [correlation_args] unless correlation_args.is_a?(Array)
10
+ @correlation = BusinessActivity.normalize_correlation_ids(*correlation_args)
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
@@ -35,7 +35,7 @@ module Wonkavision
35
35
  end
36
36
 
37
37
  def handle(name,*args,&block)
38
- binding = Wonkavision::EventBinding.new(name,self,*args)
38
+ binding = create_binding(name,self,*args)
39
39
  binding.subscribe_to_events do |event_data,event_path|
40
40
  ctx = Wonkavision::EventContext.new(event_data,event_path,binding,block)
41
41
  handler = instantiate_handler(ctx)
@@ -50,6 +50,10 @@ module Wonkavision
50
50
  self.new
51
51
  end
52
52
 
53
+ def create_binding(name,handler,*args)
54
+ Wonkavision::EventBinding.new(name,handler,*args)
55
+ end
56
+
53
57
  end
54
58
 
55
59
  module InstanceMethods
@@ -1,3 +1,3 @@
1
1
  module Wonkavision
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.4'
3
3
  end
@@ -17,7 +17,14 @@ class BusinessActivityTest < ActiveSupport::TestCase
17
17
  should "register correlation ids with each activity" do
18
18
  ids = Wonkavision::Plugins::BusinessActivity.all[0].correlation_ids
19
19
  assert_equal 1, ids.length
20
- assert_equal "test_id", ids[0][:event]
20
+ assert_equal :test_id, ids[0][:event]
21
+ end
22
+
23
+ should "use per binding correlation ids when specified" do
24
+ event = {"alt_event_id"=>"123","another_field"=>"hi there"}
25
+ Wonkavision.event_coordinator.receive_event("test/evt5",event)
26
+ assert activity = TestBusinessActivity.find_by_alt_model_id("123")
27
+ assert_equal "hi there", activity.another_field
21
28
  end
22
29
 
23
30
  end
data/test/log/test.log CHANGED
@@ -15667,3 +15667,2688 @@
15667
15667
  MONGODB wonkavision_test['system.namespaces'].find({}, {})
15668
15668
  MONGODB wonkavision_test['system.namespaces'].find({}, {})
15669
15669
  MONGODB wonkavision_test['system.namespaces'].find({}, {})
15670
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15671
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15672
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15673
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15674
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15675
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15676
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15677
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15678
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15679
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15680
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15681
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15682
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15683
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15684
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15685
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15686
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15687
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15688
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15689
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15690
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15691
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15692
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15693
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15694
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15695
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15696
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15697
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15698
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15699
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15700
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15701
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15702
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15703
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15704
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15705
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15706
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15707
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15708
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15709
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15710
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15711
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15712
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15713
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15714
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15715
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15716
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15717
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15718
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15719
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15720
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15721
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15722
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15723
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15724
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15725
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15726
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15727
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15728
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15729
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15730
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15731
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15732
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15733
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15734
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15735
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15736
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15737
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15738
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15739
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15740
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15741
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15742
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15743
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15744
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15745
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15746
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15747
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15748
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15749
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15750
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15751
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15752
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15753
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15754
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15755
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15756
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15757
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15758
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15759
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15760
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15761
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15762
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15763
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15764
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15765
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15766
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15767
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15768
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15769
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15770
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15771
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15772
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15773
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15774
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15775
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15776
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15777
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15778
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15779
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15780
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15781
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15782
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15783
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15784
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15785
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15786
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15787
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15788
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15789
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15790
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15791
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15792
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15793
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15794
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15795
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15796
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15797
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15798
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15799
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15800
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15801
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15802
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15803
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15804
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15805
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15806
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15807
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15808
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15809
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15810
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15811
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15812
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15813
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15814
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15815
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15816
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15817
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15818
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15819
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15820
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15821
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15822
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15823
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15824
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15825
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15826
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15827
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15828
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15829
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15830
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15831
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15832
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15833
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15834
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15835
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15836
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15837
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15838
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15839
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15840
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15841
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15842
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15843
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15844
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15845
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15846
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15847
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15848
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15849
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15850
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15851
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15852
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15853
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15854
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15855
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15856
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15857
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15858
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15859
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15860
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15861
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15862
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15863
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15864
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15865
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15866
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15867
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15868
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15869
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15870
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15871
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15872
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15873
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15874
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15875
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15876
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15877
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15878
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15879
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15880
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15881
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15882
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15883
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15884
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15885
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15886
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15887
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15888
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15889
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15890
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15891
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15892
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15893
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15894
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15895
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15896
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15897
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15898
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15899
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15900
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15901
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15902
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15903
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15904
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15905
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15906
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15907
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15908
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15909
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15910
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15911
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15912
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15913
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15914
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15915
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15916
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15917
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15918
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15919
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15920
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15921
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15922
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15923
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15924
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15925
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15926
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15927
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15928
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15929
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15930
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15931
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15932
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15933
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15934
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15935
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15936
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15937
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15938
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15939
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15940
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15941
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15942
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15943
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15944
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15945
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15946
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15947
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15948
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15949
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15950
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15951
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15952
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15953
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15954
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15955
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15956
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15957
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15958
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15959
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15960
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15961
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15962
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15963
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15964
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15965
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15966
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15967
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15968
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15969
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15970
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15971
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15972
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15973
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15974
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15975
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15976
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15977
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15978
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15979
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15980
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15981
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15982
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15983
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15984
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15985
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15986
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15987
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15988
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15989
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15990
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
15991
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15992
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15993
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15994
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15995
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15996
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15997
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15998
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
15999
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16000
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16001
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16002
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16003
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16004
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16005
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16006
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16007
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16008
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16009
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16010
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16011
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16012
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16013
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16014
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16015
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16016
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16017
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16018
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16019
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16020
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16021
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16022
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16023
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16024
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16025
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16026
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16027
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16028
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16029
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16030
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16031
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16032
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16033
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16034
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16035
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16036
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16037
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16038
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16039
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16040
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16041
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16042
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16043
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16044
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16045
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16046
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16047
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16048
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16049
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16050
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16051
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16052
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16053
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16054
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16055
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16056
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16057
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16058
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16059
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16060
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16061
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16062
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16063
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16064
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16065
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16066
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16067
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16068
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16069
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16070
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16071
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16072
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16073
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16074
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16075
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16076
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16077
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16078
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16079
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16080
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16081
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16082
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16083
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16084
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16085
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16086
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16087
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16088
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16089
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16090
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16091
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16092
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16093
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16094
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16095
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16096
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16097
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16098
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16099
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16100
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16101
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16102
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16103
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16104
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16105
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16106
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16107
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16108
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16109
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16110
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16111
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16112
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16113
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16114
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16115
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16116
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16117
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16118
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16119
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16120
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16121
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16122
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16123
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16124
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16125
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16126
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16127
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16128
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16129
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16130
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16131
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16132
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16133
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16134
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16135
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16136
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16137
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16138
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16139
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16140
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16141
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16142
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16143
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16144
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16145
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16146
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16147
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16148
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16149
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16150
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16151
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16152
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16153
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16154
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16155
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16156
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16157
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16158
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16159
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16160
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16161
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16162
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16163
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16164
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16165
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16166
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16167
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16168
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16169
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16170
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16171
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16172
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16173
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16174
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16175
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16176
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16177
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16178
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16179
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16180
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16181
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16182
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16183
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16184
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16185
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16186
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16187
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16188
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16189
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16190
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16191
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16192
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16193
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16194
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16195
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16196
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16197
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16198
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16199
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16200
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16201
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16202
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16203
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16204
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16205
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16206
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16207
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16208
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16209
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16210
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16211
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16212
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16213
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16214
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16215
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16216
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16217
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16218
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16219
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16220
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16221
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16222
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16223
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
16224
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16225
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16226
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16227
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16228
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16229
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16230
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16231
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16232
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16233
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16234
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16235
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16236
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16237
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16238
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16239
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16240
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16241
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16242
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16243
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16244
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16245
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16246
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16247
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16248
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16249
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16250
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16251
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16252
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16253
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16254
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16255
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16256
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16257
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16258
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16259
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16260
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16261
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16262
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16263
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16264
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16265
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16266
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16267
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16268
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16269
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16270
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16271
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16272
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16273
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16274
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16275
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16276
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16277
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16278
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16279
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16280
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16281
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16282
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16283
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16284
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16285
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16286
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16287
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16288
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16289
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3281ff8406db2c000001')}, {"_id"=>BSON::ObjectID('4c4f3281ff8406db2c000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
16290
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3281ff8406db2c000001')}, {"_id"=>BSON::ObjectID('4c4f3281ff8406db2c000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
16291
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16292
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16293
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16294
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16295
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16296
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16297
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16298
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16299
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16300
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16301
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16302
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16303
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16304
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16305
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16306
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16307
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16308
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16309
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16310
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16311
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16312
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16313
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000002')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16314
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000002')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16315
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16316
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16317
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000002')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16318
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000002')}, {}).limit(-1)
16319
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16320
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16321
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16322
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16323
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16324
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16325
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16326
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16327
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16328
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {}).limit(-1)
16329
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16330
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {"_id"=>BSON::ObjectID('4c4f3282ff8406db2c000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16331
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {}).limit(-1)
16332
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16333
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c4f3282ff8406db2c000003')}, {}).limit(-1)
16334
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16335
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16336
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16337
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16338
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16339
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
16340
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16341
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16342
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16343
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16344
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16345
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16346
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16347
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16348
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16349
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16350
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16351
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16352
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16353
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16354
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16355
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16356
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16357
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16358
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16359
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16360
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16361
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16362
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16363
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16364
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16365
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16366
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16367
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16368
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16369
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16370
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16371
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16372
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16373
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16374
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16375
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16376
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16377
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16378
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16379
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16380
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16381
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16382
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16383
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16384
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16385
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16386
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16387
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16388
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16389
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16390
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16391
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16392
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16393
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16394
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16395
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16396
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16397
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16398
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16399
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16400
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16401
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16402
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16403
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c1ff84061ed8000001')}, {"_id"=>BSON::ObjectID('4c5702c1ff84061ed8000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
16404
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c1ff84061ed8000001')}, {"_id"=>BSON::ObjectID('4c5702c1ff84061ed8000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
16405
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16406
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16407
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16408
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16409
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16410
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16411
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16412
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16413
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16414
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16415
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16416
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16417
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16418
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16419
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16420
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16421
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16422
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16423
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16424
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16425
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16426
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16427
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000002')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16428
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000002')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16429
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16430
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16431
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000002')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16432
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000002')}, {}).limit(-1)
16433
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16434
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16435
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16436
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16437
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16438
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16439
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16440
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16441
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16442
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {}).limit(-1)
16443
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16444
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {"_id"=>BSON::ObjectID('4c5702c4ff84061ed8000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16445
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {}).limit(-1)
16446
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16447
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5702c4ff84061ed8000003')}, {}).limit(-1)
16448
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16449
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16450
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16451
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16452
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16453
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16454
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16455
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16456
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16457
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16458
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16459
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16460
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16461
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16462
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16463
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16464
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16465
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16466
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16467
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16468
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16469
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16470
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16471
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16472
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16473
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16474
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16475
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16476
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16477
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16478
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16479
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16480
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16481
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16482
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16483
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16484
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16485
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16486
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16487
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16488
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16489
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16490
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16491
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16492
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16493
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16494
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16495
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16496
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16497
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16498
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16499
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16500
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16501
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16502
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16503
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16504
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16505
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16506
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16507
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16508
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16509
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16510
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16511
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16512
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16513
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16514
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16515
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16516
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16517
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16518
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16519
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16520
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16521
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16522
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16523
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16524
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16525
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16526
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16527
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16528
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16529
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16530
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16531
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16532
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16533
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16534
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16535
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16536
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16537
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16538
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"id"=>1}, :name=>"id_1", :ns=>"wonkavision_test.test_business_activities"}])
16539
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16540
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16541
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16542
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16543
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16544
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16545
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16546
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16547
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16548
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16549
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16550
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16551
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16552
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16553
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16554
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16555
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16556
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16557
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16558
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16559
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16560
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16561
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16562
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16563
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16564
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16565
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16566
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16567
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16568
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16569
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16570
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16571
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16572
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16573
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16574
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16575
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16576
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16577
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16578
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16579
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16580
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16581
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16582
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16583
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16584
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16585
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16586
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16587
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16588
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16589
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16590
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16591
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16592
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16593
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16594
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16595
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16596
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16597
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16598
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16599
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16600
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16601
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16602
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{}, "id"=>nil, "latest_milestone"=>"awaiting_first_event"})
16603
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "id"=>nil, "latest_milestone"=>"ms3", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!", "test_id"=>"123"})
16604
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16605
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16606
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16607
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16608
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16609
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16610
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16611
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16612
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16613
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16614
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16615
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16616
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16617
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16618
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16619
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16620
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16621
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16622
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16623
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16624
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16625
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16626
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{}, "id"=>nil, "latest_milestone"=>"awaiting_first_event", "modified_another_field"=>nil, "test_id"=>nil})
16627
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "id"=>nil, "latest_milestone"=>"ms2", "modified_another_field"=>nil, "test_id"=>"123"})
16628
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16629
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16630
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "id"=>nil, "latest_milestone"=>"ms2", "modified_another_field"=>nil, "test_id"=>"123"})
16631
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16632
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16633
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16634
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16635
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16636
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{}, "id"=>nil, "latest_milestone"=>"awaiting_first_event", "modified_another_field"=>nil, "test_id"=>nil})
16637
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "id"=>nil, "latest_milestone"=>"ms1", "another_field"=>"hi there", "modified_another_field"=>nil, "test_id"=>"123"})
16638
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16639
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16640
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "id"=>nil, "latest_milestone"=>"ms2", "another_field"=>"hi there", "modified_another_field"=>nil, "test_id"=>"123"})
16641
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16642
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16643
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>nil}, {"_id"=>nil, "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "id"=>nil, "latest_milestone"=>"ms3", "another_field"=>"hi there", "modified_another_field"=>nil, "test_id"=>"123"})
16644
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16645
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16646
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>nil}, {}).limit(-1)
16647
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16648
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16649
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16650
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16651
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16652
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16653
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16654
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
16655
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16656
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16657
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16658
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16659
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16660
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16661
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16662
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16663
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16664
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16665
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16666
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16667
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16668
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16669
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16670
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16671
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16672
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16673
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16674
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16675
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16676
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16677
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16678
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16679
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16680
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16681
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16682
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16683
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16684
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16685
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16686
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16687
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16688
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16689
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16690
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16691
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16692
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16693
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16694
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16695
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16696
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16697
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16698
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16699
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16700
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16701
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16702
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16703
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16704
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16705
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16706
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16707
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16708
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16709
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16710
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16711
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16712
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16713
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16714
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16715
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16716
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16717
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16718
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570576ff84061f34000001')}, {"_id"=>BSON::ObjectID('4c570576ff84061f34000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
16719
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570576ff84061f34000001')}, {"_id"=>BSON::ObjectID('4c570576ff84061f34000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
16720
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16721
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16722
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16723
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16724
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16725
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16726
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16727
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16728
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16729
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16730
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16731
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16732
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16733
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16734
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16735
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16736
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16737
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16738
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16739
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16740
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16741
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16742
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000002')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16743
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000002')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16744
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16745
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16746
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000002')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16747
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570579ff84061f34000002')}, {}).limit(-1)
16748
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16749
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16750
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16751
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16752
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16753
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16754
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16755
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16756
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16757
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {}).limit(-1)
16758
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16759
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {"_id"=>BSON::ObjectID('4c570579ff84061f34000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16760
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {}).limit(-1)
16761
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16762
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570579ff84061f34000003')}, {}).limit(-1)
16763
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16764
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16765
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16766
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16767
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16768
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16769
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16770
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
16771
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16772
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16773
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16774
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16775
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16776
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16777
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16778
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16779
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16780
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16781
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16782
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16783
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16784
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16785
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16786
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16787
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16788
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16789
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16790
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16791
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16792
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16793
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16794
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16795
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16796
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16797
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16798
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16799
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16800
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16801
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16802
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16803
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16804
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16805
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16806
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16807
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16808
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16809
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16810
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16811
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16812
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16813
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16814
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16815
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16816
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16817
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16818
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16819
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16820
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16821
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16822
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16823
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16824
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16825
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16826
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16827
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16828
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16829
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16830
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16831
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16832
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16833
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16834
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059dff84061d18000001')}, {"_id"=>BSON::ObjectID('4c57059dff84061d18000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
16835
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059dff84061d18000001')}, {"_id"=>BSON::ObjectID('4c57059dff84061d18000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
16836
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16837
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16838
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16839
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16840
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16841
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16842
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16843
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16844
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16845
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16846
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16847
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16848
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16849
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16850
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16851
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16852
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16853
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16854
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16855
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16856
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16857
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16858
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000002')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16859
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000002')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16860
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16861
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16862
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000002')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16863
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57059fff84061d18000002')}, {}).limit(-1)
16864
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16865
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16866
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16867
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16868
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16869
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16870
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16871
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16872
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16873
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {}).limit(-1)
16874
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16875
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {"_id"=>BSON::ObjectID('4c57059fff84061d18000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16876
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {}).limit(-1)
16877
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16878
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57059fff84061d18000003')}, {}).limit(-1)
16879
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16880
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16881
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16882
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16883
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16884
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16885
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16886
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
16887
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
16888
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16889
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16890
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16891
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16892
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16893
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16894
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16895
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16896
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16897
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16898
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16899
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16900
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16901
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16902
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16903
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16904
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16905
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16906
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16907
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16908
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16909
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16910
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16911
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16912
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16913
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16914
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16915
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16916
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16917
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16918
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16919
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16920
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16921
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16922
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16923
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16924
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16925
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16926
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16927
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16928
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16929
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16930
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16931
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16932
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16933
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16934
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16935
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16936
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16937
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16938
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16939
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16940
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16941
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16942
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16943
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16944
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16945
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16946
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16947
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16948
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16949
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16950
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c2ff84061ac0000001')}, {"_id"=>BSON::ObjectID('4c5705c2ff84061ac0000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
16951
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c2ff84061ac0000001')}, {"_id"=>BSON::ObjectID('4c5705c2ff84061ac0000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
16952
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16953
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16954
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16955
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16956
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16957
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16958
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16959
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16960
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16961
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16962
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16963
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16964
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16965
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16966
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16967
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16968
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16969
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16970
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16971
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16972
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16973
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16974
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000002')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16975
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000002')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16976
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16977
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16978
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000002')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
16979
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000002')}, {}).limit(-1)
16980
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16981
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16982
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16983
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16984
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
16985
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16986
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16987
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16988
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16989
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {}).limit(-1)
16990
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16991
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {"_id"=>BSON::ObjectID('4c5705c4ff84061ac0000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
16992
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {}).limit(-1)
16993
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
16994
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5705c4ff84061ac0000003')}, {}).limit(-1)
16995
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16996
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16997
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
16998
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
16999
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17000
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17001
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17002
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
17003
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17004
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17005
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17006
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17007
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17008
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17009
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17010
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17011
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17012
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17013
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17014
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17015
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17016
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17017
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17018
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17019
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17020
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17021
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17022
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17023
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17024
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17025
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17026
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17027
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17028
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17029
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17030
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17031
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17032
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17033
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17034
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17035
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17036
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17037
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17038
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17039
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17040
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17041
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17042
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17043
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17044
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17045
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17046
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17047
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17048
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17049
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17050
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17051
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17052
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17053
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17054
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17055
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17056
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17057
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17058
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17059
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17060
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17061
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17062
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17063
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17064
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17065
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17066
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570634ff84061fb0000001')}, {"_id"=>BSON::ObjectID('4c570634ff84061fb0000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17067
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570634ff84061fb0000001')}, {"_id"=>BSON::ObjectID('4c570634ff84061fb0000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17068
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17069
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17070
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17071
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17072
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17073
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17074
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17075
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17076
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17077
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17078
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17079
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17080
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17081
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17082
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17083
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17084
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17085
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17086
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17087
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17088
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17089
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17090
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000002')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
17091
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000002')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
17092
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17093
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17094
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000002')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
17095
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570637ff84061fb0000002')}, {}).limit(-1)
17096
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17097
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17098
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17099
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17100
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
17101
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17102
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17103
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17104
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17105
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {}).limit(-1)
17106
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17107
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {"_id"=>BSON::ObjectID('4c570637ff84061fb0000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17108
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {}).limit(-1)
17109
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17110
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570637ff84061fb0000003')}, {}).limit(-1)
17111
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17112
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17113
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17114
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17115
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17116
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17117
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17118
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
17119
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17120
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17121
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17122
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17123
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17124
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17125
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17126
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17127
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17128
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17129
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17130
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17131
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17132
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17133
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17134
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17135
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17136
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17137
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17138
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17139
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17140
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17141
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17142
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17143
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17144
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17145
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17146
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17147
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17148
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17149
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17150
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17151
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17152
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17153
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17154
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17155
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17156
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17157
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17158
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17159
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17160
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17161
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17162
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17163
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17164
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17165
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17166
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17167
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17168
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17169
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17170
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17171
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17172
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17173
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17174
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17175
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17176
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17177
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17178
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17179
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17180
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17181
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17182
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570699ff84061628000001')}, {"_id"=>BSON::ObjectID('4c570699ff84061628000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17183
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570699ff84061628000001')}, {"_id"=>BSON::ObjectID('4c570699ff84061628000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17184
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17185
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17186
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17187
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17188
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17189
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17190
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17191
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17192
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17193
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17194
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17195
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17196
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17197
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17198
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17199
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17200
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17201
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17202
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17203
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17204
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17205
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17206
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000002')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
17207
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000002')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000002'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
17208
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17209
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17210
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000002')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000002'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "test_id"=>"123", "modified_another_field"=>nil})
17211
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57069cff84061628000002')}, {}).limit(-1)
17212
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17213
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17214
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17215
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17216
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123", "modified_another_field"=>nil})
17217
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17218
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17219
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17220
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17221
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {}).limit(-1)
17222
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17223
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {"_id"=>BSON::ObjectID('4c57069cff84061628000003'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17224
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {}).limit(-1)
17225
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17226
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57069cff84061628000003')}, {}).limit(-1)
17227
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17228
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17229
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17230
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17231
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17232
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17233
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17234
+ MONGODB wonkavision_test['system.indexes'].insert([{:ns=>"wonkavision_test.test_business_activities", :key=>{"test_id"=>1}, :name=>"test_id_1"}])
17235
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17236
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17237
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17238
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17239
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17240
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17241
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17242
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17243
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17244
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17245
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17246
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17247
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17248
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17249
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17250
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17251
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17252
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17253
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17254
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17255
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17256
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17257
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17258
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17259
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17260
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17261
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17262
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17263
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17264
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17265
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17266
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17267
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17268
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17269
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17270
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17271
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17272
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17273
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17274
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17275
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17276
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17277
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17278
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17279
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17280
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17281
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17282
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17283
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17284
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17285
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17286
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17287
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17288
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17289
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17290
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17291
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17292
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17293
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17294
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17295
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17296
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17297
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17298
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084eff84061974000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084eff84061974000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17299
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084eff84061974000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084eff84061974000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17300
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17301
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17302
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17303
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17304
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17305
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17306
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17307
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17308
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17309
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17310
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17311
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17312
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17313
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17314
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17315
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17316
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17317
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17318
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
17319
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084eff84061974000002')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084eff84061974000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
17320
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084eff84061974000002')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084eff84061974000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
17321
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
17322
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17323
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17324
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17325
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17326
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17327
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17328
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17329
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17330
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17331
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17332
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17333
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17334
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57084fff84061974000003')}, {}).limit(-1)
17335
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17336
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17337
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17338
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17339
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17340
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17341
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17342
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17343
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17344
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {}).limit(-1)
17345
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17346
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c57084fff84061974000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17347
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {}).limit(-1)
17348
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17349
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c57084fff84061974000004')}, {}).limit(-1)
17350
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17351
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17352
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17353
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17354
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17355
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17356
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17357
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
17358
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17359
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17360
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17361
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17362
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17363
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17364
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17365
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17366
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17367
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17368
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17369
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17370
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17371
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17372
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17373
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17374
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17375
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17376
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17377
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17378
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17379
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17380
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17381
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17382
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17383
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17384
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17385
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17386
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17387
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17388
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17389
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17390
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17391
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17392
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17393
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17394
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17395
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17396
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17397
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17398
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17399
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17400
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17401
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17402
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17403
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17404
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17405
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17406
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17407
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17408
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17409
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17410
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17411
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17412
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17413
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17414
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17415
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17416
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17417
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17418
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17419
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17420
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17421
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570891ff84061b80000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570891ff84061b80000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17422
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570891ff84061b80000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570891ff84061b80000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17423
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17424
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17425
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17426
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17427
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17428
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17429
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17430
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17431
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17432
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17433
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17434
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17435
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17436
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17437
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17438
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17439
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17440
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17441
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
17442
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570892ff84061b80000002')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570892ff84061b80000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
17443
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570892ff84061b80000002')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570892ff84061b80000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
17444
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17445
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
17446
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17447
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17448
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17449
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17450
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17451
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17452
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17453
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17454
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17455
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17456
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17457
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17458
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570893ff84061b80000003')}, {}).limit(-1)
17459
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17460
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17461
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17462
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17463
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17464
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17465
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17466
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17467
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17468
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {}).limit(-1)
17469
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17470
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570893ff84061b80000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17471
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {}).limit(-1)
17472
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17473
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570893ff84061b80000004')}, {}).limit(-1)
17474
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17475
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17476
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17477
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17478
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17479
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17480
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17481
+ MONGODB wonkavision_test['system.indexes'].insert([{:ns=>"wonkavision_test.test_business_activities", :key=>{"test_id"=>1}, :name=>"test_id_1"}])
17482
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17483
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17484
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17485
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17486
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17487
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17488
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17489
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17490
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17491
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17492
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17493
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17494
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17495
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17496
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17497
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17498
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17499
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17500
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17501
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17502
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17503
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17504
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17505
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17506
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17507
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17508
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17509
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17510
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17511
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17512
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17513
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17514
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17515
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17516
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17517
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17518
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17519
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17520
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17521
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17522
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17523
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17524
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17525
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17526
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17527
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17528
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17529
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17530
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17531
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17532
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17533
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17534
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17535
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17536
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17537
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17538
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17539
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17540
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17541
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17542
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17543
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17544
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17545
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17546
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17547
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17548
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17549
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17550
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17551
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17552
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17553
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17554
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17555
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17556
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17557
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17558
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17559
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17560
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17561
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17562
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17563
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17564
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17565
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
17566
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000002')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
17567
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000002')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
17568
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
17569
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17570
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17571
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17572
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17573
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17574
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17575
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17576
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17577
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17578
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17579
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17580
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17581
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5708daff84061f68000003')}, {}).limit(-1)
17582
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17583
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17584
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17585
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17586
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17587
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17588
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17589
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17590
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17591
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {}).limit(-1)
17592
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17593
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c5708daff84061f68000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17594
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {}).limit(-1)
17595
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17596
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c5708daff84061f68000004')}, {}).limit(-1)
17597
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17598
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17599
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17600
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17601
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17602
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17603
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17604
+ MONGODB wonkavision_test['system.indexes'].insert([{:ns=>"wonkavision_test.test_business_activities", :key=>{"test_id"=>1}, :name=>"test_id_1"}])
17605
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17606
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17607
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17608
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17609
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17610
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17611
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17612
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17613
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17614
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17615
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17616
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17617
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17618
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17619
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17620
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17621
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17622
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17623
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17624
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17625
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17626
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17627
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17628
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17629
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17630
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17631
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17632
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17633
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17634
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17635
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17636
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17637
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17638
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17639
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17640
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17641
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17642
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17643
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17644
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17645
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17646
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17647
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17648
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17649
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17650
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17651
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17652
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17653
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17654
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17655
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17656
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17657
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17658
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17659
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17660
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17661
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17662
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17663
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17664
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17665
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17666
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17667
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17668
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ad8ff84061b2c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ad8ff84061b2c000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17669
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ad8ff84061b2c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ad8ff84061b2c000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17670
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17671
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17672
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17673
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17674
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17675
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17676
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17677
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17678
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17679
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17680
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17681
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17682
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17683
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17684
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17685
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17686
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17687
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17688
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
17689
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adaff84061b2c000002')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adaff84061b2c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
17690
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adaff84061b2c000002')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adaff84061b2c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
17691
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
17692
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17693
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17694
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17695
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17696
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17697
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17698
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17699
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17700
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17701
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17702
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17703
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17704
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570adbff84061b2c000003')}, {}).limit(-1)
17705
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17706
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17707
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17708
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17709
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17710
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17711
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17712
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17713
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17714
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {}).limit(-1)
17715
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17716
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570adbff84061b2c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17717
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {}).limit(-1)
17718
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17719
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570adbff84061b2c000004')}, {}).limit(-1)
17720
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17721
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17722
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17723
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17724
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17725
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17726
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17727
+ MONGODB wonkavision_test['system.indexes'].insert([{:ns=>"wonkavision_test.test_business_activities", :key=>{"test_id"=>1}, :name=>"test_id_1"}])
17728
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17729
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17730
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17731
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17732
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17733
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17734
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17735
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17736
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17737
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17738
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17739
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17740
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17741
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17742
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17743
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17744
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17745
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17746
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17747
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17748
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17749
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17750
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17751
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17752
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17753
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17754
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17755
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17756
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17757
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17758
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17759
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17760
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17761
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17762
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17763
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17764
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17765
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17766
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17767
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17768
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17769
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17770
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17771
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17772
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17773
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17774
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17775
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17776
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17777
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17778
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17779
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17780
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17781
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17782
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17783
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17784
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17785
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17786
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17787
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17788
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17789
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17790
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17791
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17792
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17793
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17794
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17795
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17796
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17797
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17798
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17799
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17800
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17801
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17802
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17803
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17804
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17805
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17806
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17807
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17808
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17809
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17810
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17811
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17812
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17813
+ MONGODB wonkavision_test['system.indexes'].insert([{:ns=>"wonkavision_test.test_business_activities", :key=>{"test_id"=>1}, :name=>"test_id_1"}])
17814
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17815
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17816
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17817
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17818
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17819
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17820
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17821
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17822
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17823
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17824
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17825
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17826
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17827
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17828
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17829
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17830
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17831
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17832
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17833
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17834
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17835
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17836
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17837
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17838
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17839
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17840
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17841
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17842
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17843
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17844
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17845
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17846
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17847
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17848
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17849
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17850
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17851
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17852
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17853
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17854
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17855
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17856
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17857
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17858
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17859
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17860
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17861
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17862
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17863
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17864
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17865
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17866
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17867
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17868
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17869
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17870
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17871
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17872
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17873
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17874
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17875
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17876
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17877
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9bff8406115c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9bff8406115c000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
17878
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9bff8406115c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9bff8406115c000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
17879
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17880
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17881
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17882
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17883
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17884
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17885
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17886
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17887
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17888
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17889
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17890
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17891
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17892
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17893
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17894
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17895
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17896
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17897
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
17898
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9dff8406115c000002')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9dff8406115c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
17899
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9dff8406115c000002')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9dff8406115c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
17900
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
17901
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17902
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17903
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17904
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17905
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17906
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17907
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17908
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17909
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17910
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17911
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17912
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17913
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570b9eff8406115c000003')}, {}).limit(-1)
17914
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17915
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17916
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17917
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17918
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
17919
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17920
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17921
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17922
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17923
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {}).limit(-1)
17924
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17925
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570b9eff8406115c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
17926
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {}).limit(-1)
17927
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
17928
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570b9eff8406115c000004')}, {}).limit(-1)
17929
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17930
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17931
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17932
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17933
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17934
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17935
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17936
+ MONGODB wonkavision_test['system.indexes'].insert([{:ns=>"wonkavision_test.test_business_activities", :key=>{"test_id"=>1}, :name=>"test_id_1"}])
17937
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
17938
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17939
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17940
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
17941
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17942
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17943
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17944
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17945
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17946
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17947
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17948
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17949
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17950
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17951
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17952
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17953
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17954
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17955
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17956
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17957
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17958
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17959
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17960
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17961
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17962
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17963
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17964
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17965
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17966
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17967
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17968
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17969
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17970
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17971
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17972
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17973
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17974
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17975
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17976
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17977
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17978
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17979
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17980
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17981
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17982
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17983
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17984
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17985
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17986
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17987
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17988
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17989
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17990
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17991
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17992
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17993
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17994
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17995
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17996
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17997
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17998
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
17999
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18000
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4cff84061a9c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4cff84061a9c000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
18001
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4cff84061a9c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4cff84061a9c000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
18002
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18003
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18004
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18005
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18006
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18007
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18008
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18009
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18010
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18011
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18012
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18013
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18014
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18015
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18016
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18017
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18018
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18019
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18020
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
18021
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4eff84061a9c000002')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4eff84061a9c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
18022
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4eff84061a9c000002')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4eff84061a9c000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
18023
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18024
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18025
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18026
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18027
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18028
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18029
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18030
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18031
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4fff84061a9c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4fff84061a9c000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18032
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4fff84061a9c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4fff84061a9c000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18033
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18034
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18035
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c4fff84061a9c000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c4fff84061a9c000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18036
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570c4fff84061a9c000003')}, {}).limit(-1)
18037
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18038
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18039
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18040
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18041
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c50ff84061a9c000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>nil, "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18042
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c50ff84061a9c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18043
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18044
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18045
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c50ff84061a9c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18046
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {}).limit(-1)
18047
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18048
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c50ff84061a9c000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "event_time"=>nil, "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18049
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {}).limit(-1)
18050
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18051
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570c50ff84061a9c000004')}, {}).limit(-1)
18052
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18053
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18054
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18055
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18056
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18057
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18058
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18059
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18060
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
18061
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c63ff84061c6c000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c63ff84061c6c000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil})
18062
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570c63ff84061c6c000001')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570c63ff84061c6c000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil})
18063
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18064
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18065
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18066
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18067
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18068
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18069
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18070
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18071
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18072
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18073
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>nil}, {}).limit(-1)
18074
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570cbfff84061b34000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570cbfff84061b34000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil})
18075
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570cbfff84061b34000001')}, {"alt_event_id"=>"123", "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570cbfff84061b34000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil})
18076
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18077
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18078
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18079
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18080
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18081
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18082
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18083
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18084
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18085
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570df1ff84061e68000001')}, {"alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570df1ff84061e68000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil})
18086
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570df1ff84061e68000001')}, {"alt_event_id"=>"123", "alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570df1ff84061e68000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil})
18087
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18088
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18089
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18090
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18091
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18092
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18093
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18094
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e09ff840619f0000001')}, {"alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570e09ff840619f0000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil})
18095
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e09ff840619f0000001')}, {"alt_event_id"=>"123", "alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570e09ff840619f0000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "event_time"=>"1/1/2001", "another_field"=>"hi there", "test_id"=>nil})
18096
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18097
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18098
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18099
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18100
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18101
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :ns=>"wonkavision_test.test_business_activities", :name=>"test_id_1"}])
18102
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18103
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e1aff84061254000001')}, {"alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570e1aff84061254000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil})
18104
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e1aff84061254000001')}, {"alt_event_id"=>"123", "alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570e1aff84061254000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>"hi there", "test_id"=>nil})
18105
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18106
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18107
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18108
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18109
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18110
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
18111
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18112
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18113
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18114
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18115
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18116
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18117
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18118
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18119
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18120
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18121
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18122
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18123
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18124
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18125
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18126
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18127
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18128
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18129
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18130
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18131
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18132
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18133
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18134
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18135
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18136
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18137
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18138
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18139
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18140
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18141
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18142
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18143
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18144
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18145
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18146
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18147
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18148
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18149
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18150
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18151
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18152
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18153
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18154
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18155
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18156
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18157
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18158
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18159
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18160
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18161
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18162
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18163
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18164
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18165
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18166
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18167
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18168
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18169
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18170
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18171
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18172
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18173
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18174
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
18175
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
18176
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18177
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18178
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18179
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18180
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18181
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18182
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18183
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18184
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18185
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18186
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18187
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18188
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18189
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18190
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18191
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18192
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18193
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18194
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18195
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000002')}, {"alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570e44ff84061894000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
18196
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000002')}, {"alt_event_id"=>"123", "alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570e44ff84061894000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
18197
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18198
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18199
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18200
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18201
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18202
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18203
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18204
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18205
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18206
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18207
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18208
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18209
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18210
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570e44ff84061894000003')}, {}).limit(-1)
18211
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18212
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18213
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18214
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18215
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18216
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18217
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18218
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18219
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18220
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {}).limit(-1)
18221
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18222
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570e44ff84061894000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18223
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {}).limit(-1)
18224
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18225
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570e44ff84061894000004')}, {}).limit(-1)
18226
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18227
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18228
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18229
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18230
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18231
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18232
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18233
+ MONGODB wonkavision_test['system.indexes'].insert([{:key=>{"test_id"=>1}, :name=>"test_id_1", :ns=>"wonkavision_test.test_business_activities"}])
18234
+ MONGODB admin['$cmd'].find({:ismaster=>1}, {}).limit(-1)
18235
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18236
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18237
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18238
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18239
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18240
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18241
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18242
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18243
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18244
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18245
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18246
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18247
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18248
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18249
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18250
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18251
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18252
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18253
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18254
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18255
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18256
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18257
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18258
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18259
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18260
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18261
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18262
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18263
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18264
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18265
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18266
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18267
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18268
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18269
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18270
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18271
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18272
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18273
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18274
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18275
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18276
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18277
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18278
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18279
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18280
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18281
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18282
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18283
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18284
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18285
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18286
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18287
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18288
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18289
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18290
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18291
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18292
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18293
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18294
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18295
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18296
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18297
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ecdff84061988000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ecdff84061988000001'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>"123"})
18298
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ecdff84061988000001')}, {"alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ecdff84061988000001'), "timeline"=>{"ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "test_id"=>"123", "modified_another_field"=>"'hi there' WAS SERVED!! OH YEAH!! IN-YOUR-FACE!!"})
18299
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18300
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18301
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18302
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18303
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18304
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18305
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18306
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18307
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18308
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18309
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18310
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18311
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18312
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18313
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18314
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18315
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18316
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18317
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18318
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ecfff84061988000002')}, {"alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570ecfff84061988000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "test_id"=>nil, "modified_another_field"=>nil})
18319
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ecfff84061988000002')}, {"alt_event_id"=>"123", "alt_model_id"=>"123", "_id"=>BSON::ObjectID('4c570ecfff84061988000002'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>"hi there", "test_id"=>nil, "modified_another_field"=>nil})
18320
+ MONGODB wonkavision_test['test_business_activities'].find({:alt_model_id=>"123"}, {}).limit(-1)
18321
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18322
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18323
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18324
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18325
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18326
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18327
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18328
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000003'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18329
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000003'), "timeline"=>{"ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18330
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18331
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18332
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000003')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000003'), "timeline"=>{"ms1"=>Mon Jan 01 07:00:00 UTC 2001, "ms2"=>Mon Jan 01 08:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18333
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570ed0ff84061988000003')}, {}).limit(-1)
18334
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18335
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18336
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18337
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18338
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000004'), "timeline"=>{}, "latest_milestone"=>"awaiting_first_event", "another_field"=>nil, "test_id"=>"123", "modified_another_field"=>nil})
18339
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms1", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18340
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18341
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18342
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms2", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18343
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {}).limit(-1)
18344
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18345
+ MONGODB wonkavision_test['test_business_activities'].update({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {"alt_event_id"=>nil, "alt_model_id"=>nil, "_id"=>BSON::ObjectID('4c570ed0ff84061988000004'), "timeline"=>{"ms1"=>Mon Jan 01 00:00:00 UTC 2001, "ms2"=>Mon Jan 01 00:00:00 UTC 2001, "ms3"=>Mon Jan 01 00:00:00 UTC 2001}, "latest_milestone"=>"ms3", "another_field"=>"hi there", "test_id"=>"123", "modified_another_field"=>nil})
18346
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {}).limit(-1)
18347
+ MONGODB wonkavision_test['test_business_activities'].find({:test_id=>"123"}, {}).limit(-1)
18348
+ MONGODB wonkavision_test['test_business_activities'].find({:_id=>BSON::ObjectID('4c570ed0ff84061988000004')}, {}).limit(-1)
18349
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18350
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18351
+ MONGODB wonkavision_test['$cmd'].find({:drop=>"test_business_activities"}, {}).limit(-1)
18352
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18353
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})
18354
+ MONGODB wonkavision_test['system.namespaces'].find({}, {})