ddr-models 1.8.0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cfbf34b5dc2a35a84fc605e90f375592e210494c
4
- data.tar.gz: 0664f48be4dfc59601d3bbff7cd48ba64edab9a5
3
+ metadata.gz: caa9019a86e6029ffd6e988bd26755b8f098302f
4
+ data.tar.gz: 542ea1b0fd5f659b898717c561c4ef79013b6f59
5
5
  SHA512:
6
- metadata.gz: 28e54cb29f53c664d7382e65d2da98e2d5914d92993a3e59034dcb0ef69d7b11b35df4294b954adc5939e5cd23657e2cac7a2a2c1077433ebf32388d1ec69348
7
- data.tar.gz: 0f12f801b997855fa14f93a9ad1eff51ff5a80ae36e3ca2acdf1ba7506e4dfcf0fde3d1854eb309da0c4292ca99025127a4b27be11ed77ac316f7dee5d607e62
6
+ metadata.gz: 53a4dc636395475c31615765013380233988ff948d0771b19140b228355182325dfae7981587789b5b4b783392807c4d775cb28aa941c95d1d54d3ee0d68ed14
7
+ data.tar.gz: f226a5e8d652a4c9a16f94e48431525f69da5d281214e4bba6029fa1c13ab138f0b2d44ee5e0e44506a59ef6ee93c3dffbd296c67a1bb50434fb398b234b9141
@@ -5,8 +5,13 @@ module Ddr
5
5
  class AdminMetadataDatastream < ActiveFedora::NtriplesRDFDatastream
6
6
 
7
7
  property :permanent_id, predicate: Ddr::Vocab::Asset.permanentId
8
+
8
9
  property :permanent_url, predicate: Ddr::Vocab::Asset.permanentUrl
9
- property :original_filename, predicate: RDF::Vocab::PREMIS::V1.hasOriginalName
10
+
11
+ property :original_filename, predicate: RDF::Vocab::PREMIS::V1.hasOriginalName do |index|
12
+ index.as :stored_sortable
13
+ end
14
+
10
15
  property :workflow_state, predicate: Ddr::Vocab::Asset.workflowState
11
16
 
12
17
  Ddr::Vocab::Roles.each do |term|
@@ -0,0 +1,8 @@
1
+ module Ddr
2
+ module Index
3
+ extend ActiveSupport::Autoload
4
+
5
+ autoload :Fields
6
+
7
+ end
8
+ end
@@ -31,7 +31,6 @@ module Ddr
31
31
  OBJECT_STATE = solr_name :object_state, :stored_sortable
32
32
  OBJECT_CREATE_DATE = solr_name :system_create, :stored_sortable, type: :date
33
33
  OBJECT_MODIFIED_DATE = solr_name :system_modified, :stored_sortable, type: :date
34
- ORIGINAL_FILENAME = solr_name :original_filename, :symbol
35
34
  PERMANENT_ID = solr_name :permanent_id, :stored_sortable, type: :string
36
35
  PERMANENT_URL = solr_name :permanent_url, :stored_sortable, type: :string
37
36
  TITLE = solr_name :title, :stored_sortable
@@ -0,0 +1,7 @@
1
+ module Ddr
2
+ module Managers
3
+ class IndexManager < Manager
4
+
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,25 @@
1
+ module Ddr
2
+ module Models
3
+ class Index
4
+
5
+ Field = Struct.new(:name, :index_as, :method)
6
+
7
+ def fields
8
+ @fields ||= {}
9
+ end
10
+
11
+ def field(key, *index_as)
12
+ raise "Field :#{key} already indexed." if fields.include?(key)
13
+ fields[key] = Field.new.tap do |f|
14
+ f.name = ActiveFedora::SolrService.solr_name(key, *index_as)
15
+ f.index_as = index_as
16
+ yield f if block_given?
17
+ end
18
+ end
19
+
20
+ def [](key)
21
+ fields[key]
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,108 @@
1
+ module Ddr
2
+ module Models
3
+ module Indexing
4
+ extend ActiveSupport::Autoloading
5
+
6
+ included do
7
+ def self.index(&block)
8
+ if block_given?
9
+ index.instance_eval(&block)
10
+ else
11
+ @@index ||= Index.new
12
+ end
13
+ end
14
+ end
15
+
16
+ class Index
17
+ Field = Struct.new(:name, :index_as, :method)
18
+
19
+ class << self
20
+ def fields
21
+ @fields ||= {}
22
+ end
23
+
24
+ def field(key, *index_as)
25
+ raise "Field :#{key} already indexed." if fields.include?(key)
26
+ fields[key] = Field.new.tap do |f|
27
+ f.name = ActiveFedora::SolrService.solr_name(key, *index_as)
28
+ f.index_as = index_as
29
+ yield f if block_given?
30
+ end
31
+ end
32
+
33
+ def [](key)
34
+ fields[key]
35
+ end
36
+ end
37
+ end
38
+
39
+ def self.index(&block)
40
+ Index.instance_eval(&block)
41
+ end
42
+
43
+
44
+ def to_solr(solr_doc=Hash.new, opts={})
45
+ solr_doc = super(solr_doc, opts)
46
+ index.fields.values.each_with_object(solr_doc) do |field, doc|
47
+ if method = field.method
48
+ doc[field.name] = method.is_a?(Symbol) ? send(method) : instance_eval(method)
49
+ end
50
+ end
51
+ end
52
+
53
+ def index
54
+ Index
55
+ end
56
+
57
+ # def index_fields
58
+ # fields = {
59
+ # TITLE => title_display,
60
+ # INTERNAL_URI => internal_uri,
61
+ # IDENTIFIER => identifier_sort,
62
+ # WORKFLOW_STATE => workflow_state
63
+ # }
64
+ # if permanent_id.present?
65
+ # fields[PERMANENT_ID] = permanent_id
66
+ # end
67
+ # if permanent_url.present?
68
+ # fields[PERMANENT_URL] = permanent_url
69
+ # end
70
+ # if respond_to? :fixity_checks
71
+ # last_fixity_check = fixity_checks.last
72
+ # fields.merge!(last_fixity_check.to_solr) if last_fixity_check
73
+ # end
74
+ # if respond_to? :virus_checks
75
+ # last_virus_check = virus_checks.last
76
+ # fields.merge!(last_virus_check.to_solr) if last_virus_check
77
+ # end
78
+ # if respond_to?(:original_filename) && original_filename.present?
79
+ # fields[ORIGINAL_FILENAME] = original_filename
80
+ # end
81
+ # if has_content?
82
+ # fields[CONTENT_CONTROL_GROUP] = content.controlGroup
83
+ # fields[CONTENT_SIZE] = content_size
84
+ # fields[CONTENT_SIZE_HUMAN] = content_human_size
85
+ # fields[MEDIA_TYPE] = content_type
86
+ # fields[MEDIA_MAJOR_TYPE] = content_major_type
87
+ # fields[MEDIA_SUB_TYPE] = content_sub_type
88
+ # end
89
+ # if is_a? Component
90
+ # fields[COLLECTION_URI] = collection_uri
91
+ # end
92
+ # fields
93
+ # end
94
+
95
+ def title_display
96
+ return title.first if title.present?
97
+ return identifier.first if identifier.present?
98
+ return original_filename if respond_to?(:original_filename) && original_filename.present?
99
+ "[#{pid}]"
100
+ end
101
+
102
+ def identifier_sort
103
+ identifier.first
104
+ end
105
+
106
+ end
107
+ end
108
+ end
@@ -30,9 +30,6 @@ module Ddr
30
30
  last_virus_check = virus_checks.last
31
31
  fields.merge!(last_virus_check.to_solr) if last_virus_check
32
32
  end
33
- if respond_to?(:original_filename) && original_filename.present?
34
- fields[ORIGINAL_FILENAME] = original_filename
35
- end
36
33
  if has_content?
37
34
  fields[CONTENT_CONTROL_GROUP] = content.controlGroup
38
35
  fields[CONTENT_SIZE] = content_size
@@ -1,5 +1,5 @@
1
1
  module Ddr
2
2
  module Models
3
- VERSION = "1.8.0"
3
+ VERSION = "1.8.1"
4
4
  end
5
5
  end
@@ -8553,3 +8553,174 @@ Migrating to DropWorkflowStates (20150110023410)
8553
8553
   (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20141107124012')
8554
8554
   (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141216040225')
8555
8555
   (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20141218020612')
8556
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8557
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8558
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8559
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8560
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8561
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8562
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8563
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8564
+ Ddr::Events::FixityCheckEvent Load (16.5ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
8565
+ Ddr::Events::VirusCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
8566
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8567
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8568
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8569
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8570
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8571
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8572
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8573
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8574
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8575
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
8576
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8577
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8578
+  (0.2ms)  SELECT sql
8579
+ FROM sqlite_master
8580
+ WHERE name='index_events_on_type' AND type='index'
8581
+ UNION ALL
8582
+ SELECT sql
8583
+ FROM sqlite_temp_master
8584
+ WHERE name='index_events_on_type' AND type='index'
8585
+ 
8586
+  (0.1ms) SELECT sql
8587
+ FROM sqlite_master
8588
+ WHERE name='index_events_on_pid' AND type='index'
8589
+ UNION ALL
8590
+ SELECT sql
8591
+ FROM sqlite_temp_master
8592
+ WHERE name='index_events_on_pid' AND type='index'
8593
+
8594
+  (0.1ms)  SELECT sql
8595
+ FROM sqlite_master
8596
+ WHERE name='index_events_on_outcome' AND type='index'
8597
+ UNION ALL
8598
+ SELECT sql
8599
+ FROM sqlite_temp_master
8600
+ WHERE name='index_events_on_outcome' AND type='index'
8601
+ 
8602
+  (0.1ms) SELECT sql
8603
+ FROM sqlite_master
8604
+ WHERE name='index_events_on_event_date_time' AND type='index'
8605
+ UNION ALL
8606
+ SELECT sql
8607
+ FROM sqlite_temp_master
8608
+ WHERE name='index_events_on_event_date_time' AND type='index'
8609
+
8610
+  (0.1ms)  SELECT sql
8611
+ FROM sqlite_master
8612
+ WHERE name='index_users_on_username' AND type='index'
8613
+ UNION ALL
8614
+ SELECT sql
8615
+ FROM sqlite_temp_master
8616
+ WHERE name='index_users_on_username' AND type='index'
8617
+ 
8618
+  (0.1ms) SELECT sql
8619
+ FROM sqlite_master
8620
+ WHERE name='index_users_on_reset_password_token' AND type='index'
8621
+ UNION ALL
8622
+ SELECT sql
8623
+ FROM sqlite_temp_master
8624
+ WHERE name='index_users_on_reset_password_token' AND type='index'
8625
+
8626
+  (0.1ms)  SELECT sql
8627
+ FROM sqlite_master
8628
+ WHERE name='index_users_on_email' AND type='index'
8629
+ UNION ALL
8630
+ SELECT sql
8631
+ FROM sqlite_temp_master
8632
+ WHERE name='index_users_on_email' AND type='index'
8633
+ 
8634
+  (1.3ms) CREATE TABLE "events" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "event_date_time" datetime, "user_id" integer, "type" varchar(255), "pid" varchar(255), "software" varchar(255), "comment" text, "created_at" datetime, "updated_at" datetime, "summary" varchar(255), "outcome" varchar(255), "detail" text, "exception" varchar(255))
8635
+  (0.1ms) select sqlite_version(*)
8636
+  (1.3ms) CREATE INDEX "index_events_on_event_date_time" ON "events" ("event_date_time")
8637
+  (0.1ms)  SELECT sql
8638
+ FROM sqlite_master
8639
+ WHERE name='index_events_on_event_date_time' AND type='index'
8640
+ UNION ALL
8641
+ SELECT sql
8642
+ FROM sqlite_temp_master
8643
+ WHERE name='index_events_on_event_date_time' AND type='index'
8644
+ 
8645
+  (1.2ms) CREATE INDEX "index_events_on_outcome" ON "events" ("outcome")
8646
+  (0.1ms)  SELECT sql
8647
+ FROM sqlite_master
8648
+ WHERE name='index_events_on_outcome' AND type='index'
8649
+ UNION ALL
8650
+ SELECT sql
8651
+ FROM sqlite_temp_master
8652
+ WHERE name='index_events_on_outcome' AND type='index'
8653
+ 
8654
+  (0.1ms) SELECT sql
8655
+ FROM sqlite_master
8656
+ WHERE name='index_events_on_event_date_time' AND type='index'
8657
+ UNION ALL
8658
+ SELECT sql
8659
+ FROM sqlite_temp_master
8660
+ WHERE name='index_events_on_event_date_time' AND type='index'
8661
+
8662
+  (1.4ms) CREATE INDEX "index_events_on_pid" ON "events" ("pid")
8663
+  (0.1ms) SELECT sql
8664
+ FROM sqlite_master
8665
+ WHERE name='index_events_on_pid' AND type='index'
8666
+ UNION ALL
8667
+ SELECT sql
8668
+ FROM sqlite_temp_master
8669
+ WHERE name='index_events_on_pid' AND type='index'
8670
+
8671
+  (0.1ms)  SELECT sql
8672
+ FROM sqlite_master
8673
+ WHERE name='index_events_on_outcome' AND type='index'
8674
+ UNION ALL
8675
+ SELECT sql
8676
+ FROM sqlite_temp_master
8677
+ WHERE name='index_events_on_outcome' AND type='index'
8678
+ 
8679
+  (0.1ms) SELECT sql
8680
+ FROM sqlite_master
8681
+ WHERE name='index_events_on_event_date_time' AND type='index'
8682
+ UNION ALL
8683
+ SELECT sql
8684
+ FROM sqlite_temp_master
8685
+ WHERE name='index_events_on_event_date_time' AND type='index'
8686
+
8687
+  (1.4ms) CREATE INDEX "index_events_on_type" ON "events" ("type")
8688
+  (1.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "username" varchar(255) DEFAULT '' NOT NULL, "first_name" varchar(255), "middle_name" varchar(255), "nickname" varchar(255), "last_name" varchar(255), "display_name" varchar(255))
8689
+  (1.3ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
8690
+  (0.1ms) SELECT sql
8691
+ FROM sqlite_master
8692
+ WHERE name='index_users_on_email' AND type='index'
8693
+ UNION ALL
8694
+ SELECT sql
8695
+ FROM sqlite_temp_master
8696
+ WHERE name='index_users_on_email' AND type='index'
8697
+
8698
+  (1.3ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
8699
+  (0.1ms) SELECT sql
8700
+ FROM sqlite_master
8701
+ WHERE name='index_users_on_reset_password_token' AND type='index'
8702
+ UNION ALL
8703
+ SELECT sql
8704
+ FROM sqlite_temp_master
8705
+ WHERE name='index_users_on_reset_password_token' AND type='index'
8706
+
8707
+  (0.1ms)  SELECT sql
8708
+ FROM sqlite_master
8709
+ WHERE name='index_users_on_email' AND type='index'
8710
+ UNION ALL
8711
+ SELECT sql
8712
+ FROM sqlite_temp_master
8713
+ WHERE name='index_users_on_email' AND type='index'
8714
+ 
8715
+  (1.2ms) CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")
8716
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
8717
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8718
+  (0.1ms) SELECT version FROM "schema_migrations"
8719
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150110023410')
8720
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141021233359')
8721
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141021234156')
8722
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141103192146')
8723
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20141104181418')
8724
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20141107124012')
8725
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20141216040225')
8726
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20141218020612')
@@ -103075,3 +103075,3305 @@ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index
103075
103075
  Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:340' ORDER BY event_date_time DESC LIMIT 1
103076
103076
  Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103077
103077
   (0.1ms) rollback transaction
103078
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
103079
+  (2.9ms) DELETE FROM "events";
103080
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
103081
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'events';
103082
+  (1.7ms) DELETE FROM "users";
103083
+  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
103084
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
103085
+ Using the default fedora.yml that comes with active-fedora. If you want to override this, pass the path to fedora.yml to ActiveFedora - ie. ActiveFedora.init(:fedora_config_path => '/path/to/fedora.yml') - or set Rails.root and put fedora.yml into #{Rails.root}/config.
103086
+ ActiveFedora: loading fedora config from /Users/dc/.rvm/gems/ruby-2.1.2@ddr-models/gems/active-fedora-7.1.2/config/fedora.yml
103087
+ Using the default fedora.yml that comes with active-fedora. If you want to override this, pass the path to fedora.yml to ActiveFedora - ie. ActiveFedora.init(:fedora_config_path => '/path/to/fedora.yml') - or set Rails.root and put fedora.yml into #{Rails.root}/config.
103088
+ ActiveFedora: loading solr config from /Users/dc/.rvm/gems/ruby-2.1.2@ddr-models/gems/active-fedora-7.1.2/config/solr.yml
103089
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103090
+  (0.1ms) begin transaction
103091
+  (0.1ms) SAVEPOINT active_record_1
103092
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person1') LIMIT 1
103093
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
103094
+ Binary data inserted for `string` type on column `encrypted_password`
103095
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:52:48.879366"], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$VnJ8D0iZUbvJ5rYLx5jhV.iMUBYcifs4cSHjt7qXfK.NDu/134Sru"], ["updated_at", "2015-01-12 16:52:48.879366"], ["username", "person1"]]
103096
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103097
+ Ddr::Models::Error
103098
+ Usergroups are ["public", "registered"]
103099
+ [CANCAN] Checking edit permissions for user: person1 with groups: ["public", "registered"]
103100
+ [CANCAN] edit_groups: []
103101
+ [CANCAN] edit_users: []
103102
+ [CANCAN] decision: false
103103
+ [CANCAN] Checking read permissions for user: person1 with groups: ["public", "registered"]
103104
+ [CANCAN] edit_groups: []
103105
+ [CANCAN] read_groups: []
103106
+ [CANCAN] edit_users: []
103107
+ [CANCAN] read_users: ["person1"]
103108
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103109
+  (0.7ms) rollback transaction
103110
+  (0.1ms) begin transaction
103111
+  (0.0ms) SAVEPOINT active_record_1
103112
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person2') LIMIT 1
103113
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
103114
+ Binary data inserted for `string` type on column `encrypted_password`
103115
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:52:49.140278"], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$O5aEZX2CZNgO8UHoNCffMOjk4YOS/0qjKyu08EQEwGhiC.vdFvipS"], ["updated_at", "2015-01-12 16:52:49.140278"], ["username", "person2"]]
103116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103117
+ Ddr::Models::Error
103118
+ Usergroups are ["public", "registered"]
103119
+ [CANCAN] Checking edit permissions for user: person2 with groups: ["public", "registered"]
103120
+ [CANCAN] edit_groups: []
103121
+ [CANCAN] edit_users: ["person2"]
103122
+ [CANCAN] decision: true
103123
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103124
+  (0.6ms) rollback transaction
103125
+  (0.0ms) begin transaction
103126
+  (0.0ms) SAVEPOINT active_record_1
103127
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person3') LIMIT 1
103128
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
103129
+ Binary data inserted for `string` type on column `encrypted_password`
103130
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:52:49.171645"], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$98P.s1Q3qoWACtnc5EFWyOCfZUMihcytlhLpKHIxhggGRYX3c5L3S"], ["updated_at", "2015-01-12 16:52:49.171645"], ["username", "person3"]]
103131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103132
+ Ddr::Models::Error
103133
+ Usergroups are ["public", "registered"]
103134
+ [CANCAN] Checking edit permissions for user: person3 with groups: ["public", "registered"]
103135
+ [CANCAN] edit_groups: []
103136
+ [CANCAN] edit_users: []
103137
+ [CANCAN] decision: false
103138
+ [CANCAN] Checking read permissions for user: person3 with groups: ["public", "registered"]
103139
+ [CANCAN] edit_groups: []
103140
+ [CANCAN] read_groups: []
103141
+ [CANCAN] edit_users: []
103142
+ [CANCAN] read_users: []
103143
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103144
+  (6.6ms) rollback transaction
103145
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
103146
+  (6.4ms) DELETE FROM "events";
103147
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
103148
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'events';
103149
+  (2.3ms) DELETE FROM "users";
103150
+  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
103151
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
103152
+ Using the default fedora.yml that comes with active-fedora. If you want to override this, pass the path to fedora.yml to ActiveFedora - ie. ActiveFedora.init(:fedora_config_path => '/path/to/fedora.yml') - or set Rails.root and put fedora.yml into #{Rails.root}/config.
103153
+ ActiveFedora: loading fedora config from /Users/dc/.rvm/gems/ruby-2.1.2@ddr-models/gems/active-fedora-7.1.2/config/fedora.yml
103154
+ Using the default fedora.yml that comes with active-fedora. If you want to override this, pass the path to fedora.yml to ActiveFedora - ie. ActiveFedora.init(:fedora_config_path => '/path/to/fedora.yml') - or set Rails.root and put fedora.yml into #{Rails.root}/config.
103155
+ ActiveFedora: loading solr config from /Users/dc/.rvm/gems/ruby-2.1.2@ddr-models/gems/active-fedora-7.1.2/config/solr.yml
103156
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103157
+  (0.1ms) begin transaction
103158
+  (0.1ms) SAVEPOINT active_record_1
103159
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person1') LIMIT 1
103160
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
103161
+ Binary data inserted for `string` type on column `encrypted_password`
103162
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:38.985378"], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$GYfJeBGM87jTkCk6RYuETu9zLGr830Q9EEoVcPwGGtuIilP/1PQMO"], ["updated_at", "2015-01-12 16:54:38.985378"], ["username", "person1"]]
103163
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103164
+ Ddr::Models::Error
103165
+ Usergroups are ["public", "registered"]
103166
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103167
+  (12.2ms) rollback transaction
103168
+  (0.1ms) begin transaction
103169
+  (0.1ms) SAVEPOINT active_record_1
103170
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person2') LIMIT 1
103171
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
103172
+ Binary data inserted for `string` type on column `encrypted_password`
103173
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.253521"], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$Jrlcqxu/LKAYgaGOMFYyou9MNp4jOlIXN8dUo.ZsnWygb9RALSi5m"], ["updated_at", "2015-01-12 16:54:39.253521"], ["username", "person2"]]
103174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103175
+ Ddr::Models::Error
103176
+ Usergroups are ["public", "registered"]
103177
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103178
+  (0.8ms) rollback transaction
103179
+  (0.1ms) begin transaction
103180
+  (0.1ms) SAVEPOINT active_record_1
103181
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person3') LIMIT 1
103182
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
103183
+ Binary data inserted for `string` type on column `encrypted_password`
103184
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.327425"], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$xeUaclVIyF4bgpCiZybUE.aZ3S1OQTN36rsuOfnm90oZ22/ZrTEF."], ["updated_at", "2015-01-12 16:54:39.327425"], ["username", "person3"]]
103185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103186
+ Ddr::Models::Error
103187
+ Usergroups are ["public", "registered"]
103188
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103189
+  (0.6ms) rollback transaction
103190
+  (0.1ms) begin transaction
103191
+  (0.0ms) SAVEPOINT active_record_1
103192
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person4') LIMIT 1
103193
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
103194
+ Binary data inserted for `string` type on column `encrypted_password`
103195
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.365590"], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$o6zoDGeGcKknxsEqTcdg9OgPQ15BxmbYj1sB4Fk9f7y7D9QmID32K"], ["updated_at", "2015-01-12 16:54:39.365590"], ["username", "person4"]]
103196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103197
+ Ddr::Models::Error
103198
+ Usergroups are ["public", "registered"]
103199
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103200
+  (0.8ms) rollback transaction
103201
+  (0.1ms) begin transaction
103202
+  (0.0ms) SAVEPOINT active_record_1
103203
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person5') LIMIT 1
103204
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
103205
+ Binary data inserted for `string` type on column `encrypted_password`
103206
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.425852"], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$6opVZBmamylMP4ME4wrkcuQeZrziHbosk.0MAfnFbII6RFqzSTh3."], ["updated_at", "2015-01-12 16:54:39.425852"], ["username", "person5"]]
103207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103208
+ Ddr::Models::Error
103209
+ Usergroups are ["public", "registered"]
103210
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103211
+  (0.9ms) rollback transaction
103212
+  (0.1ms) begin transaction
103213
+  (0.1ms) SAVEPOINT active_record_1
103214
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person6') LIMIT 1
103215
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
103216
+ Binary data inserted for `string` type on column `encrypted_password`
103217
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.465448"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$j.M1U0Zzy6XYgdFnC/.QB.whnEI/Rk4ztElophkdZVkCc7Boi7CVO"], ["updated_at", "2015-01-12 16:54:39.465448"], ["username", "person6"]]
103218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103219
+ Ddr::Models::Error
103220
+ Usergroups are ["public", "registered"]
103221
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103222
+  (1.0ms) rollback transaction
103223
+  (0.1ms) begin transaction
103224
+  (0.1ms) SAVEPOINT active_record_1
103225
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person7') LIMIT 1
103226
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
103227
+ Binary data inserted for `string` type on column `encrypted_password`
103228
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.506729"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$Kb3JDt/gV6oo96MFNVqDtezCplUfDu5ldTAACLRO5LqBJxyaDA.qS"], ["updated_at", "2015-01-12 16:54:39.506729"], ["username", "person7"]]
103229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103230
+ Ddr::Models::Error
103231
+ Usergroups are ["public", "registered"]
103232
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103233
+  (0.7ms) rollback transaction
103234
+  (0.1ms) begin transaction
103235
+  (0.0ms) SAVEPOINT active_record_1
103236
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person8') LIMIT 1
103237
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
103238
+ Binary data inserted for `string` type on column `encrypted_password`
103239
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.544903"], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$Xfp1H5IdTGHzTRwgP2c5UejuPG5bheln10tSsBYeM0jGIpSvnpRdK"], ["updated_at", "2015-01-12 16:54:39.544903"], ["username", "person8"]]
103240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103241
+ Ddr::Models::Error
103242
+ Usergroups are ["public", "registered"]
103243
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103244
+  (0.9ms) rollback transaction
103245
+  (0.1ms) begin transaction
103246
+  (0.1ms) SAVEPOINT active_record_1
103247
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person9') LIMIT 1
103248
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person9@example.com' LIMIT 1
103249
+ Binary data inserted for `string` type on column `encrypted_password`
103250
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.679455"], ["email", "person9@example.com"], ["encrypted_password", "$2a$04$pyhtpJmfGttsSFJ1yCCPGem/W9sbqRLJRD1bcAVcHybGtMZQ.lL.S"], ["updated_at", "2015-01-12 16:54:39.679455"], ["username", "person9"]]
103251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103252
+ Ddr::Models::Error
103253
+ Usergroups are ["public", "registered"]
103254
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103255
+  (0.8ms) rollback transaction
103256
+  (0.1ms) begin transaction
103257
+  (0.0ms) SAVEPOINT active_record_1
103258
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person10') LIMIT 1
103259
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person10@example.com' LIMIT 1
103260
+ Binary data inserted for `string` type on column `encrypted_password`
103261
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.710534"], ["email", "person10@example.com"], ["encrypted_password", "$2a$04$XRV.L.yF8oJXEc3l52CcsuyI2mvBYzadIUlm4w9ey5tmwVnMfdlaG"], ["updated_at", "2015-01-12 16:54:39.710534"], ["username", "person10"]]
103262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103263
+ Usergroups are ["public", "Collection Creators", "registered"]
103264
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103265
+  (0.8ms) rollback transaction
103266
+  (0.1ms) begin transaction
103267
+  (0.1ms) SAVEPOINT active_record_1
103268
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person11') LIMIT 1
103269
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person11@example.com' LIMIT 1
103270
+ Binary data inserted for `string` type on column `encrypted_password`
103271
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:39.742834"], ["email", "person11@example.com"], ["encrypted_password", "$2a$04$KEmnmD8/V1U3p9u1SuHX4e7PT2NhYyWuJzt8upt4Hb5Ox/ncUXuHq"], ["updated_at", "2015-01-12 16:54:39.742834"], ["username", "person11"]]
103272
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103273
+ Ddr::Models::Error
103274
+ Usergroups are ["public", "registered"]
103275
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:341' ORDER BY event_date_time DESC LIMIT 1
103276
+ [CANCAN] Checking read permissions for user: person11 with groups: ["public", "registered"]
103277
+ [CANCAN] edit_groups: []
103278
+ [CANCAN] read_groups: []
103279
+ [CANCAN] edit_users: []
103280
+ [CANCAN] read_users: []
103281
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103282
+  (0.7ms) rollback transaction
103283
+  (0.1ms) begin transaction
103284
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:342' ORDER BY event_date_time DESC LIMIT 1
103285
+  (0.1ms) SAVEPOINT active_record_1
103286
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person12') LIMIT 1
103287
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person12@example.com' LIMIT 1
103288
+ Binary data inserted for `string` type on column `encrypted_password`
103289
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:42.086622"], ["email", "person12@example.com"], ["encrypted_password", "$2a$04$.JPDCvgP1MHoCOm4hQuLvOKgOWJQiwwbnF/MRox520oitXjhC91gW"], ["updated_at", "2015-01-12 16:54:42.086622"], ["username", "person12"]]
103290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103291
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:342" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
103292
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:342' ORDER BY event_date_time DESC LIMIT 1
103293
+ Ddr::Models::Error
103294
+ Usergroups are ["public", "registered"]
103295
+ [CANCAN] Checking read permissions for user: person12 with groups: ["public", "registered"]
103296
+ [CANCAN] edit_groups: []
103297
+ [CANCAN] read_groups: []
103298
+ [CANCAN] edit_users: []
103299
+ [CANCAN] read_users: ["person12"]
103300
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103301
+  (0.6ms) rollback transaction
103302
+  (0.1ms) begin transaction
103303
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:343' ORDER BY event_date_time DESC LIMIT 1
103304
+  (0.1ms) SAVEPOINT active_record_1
103305
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person13') LIMIT 1
103306
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person13@example.com' LIMIT 1
103307
+ Binary data inserted for `string` type on column `encrypted_password`
103308
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:42.919538"], ["email", "person13@example.com"], ["encrypted_password", "$2a$04$YsGCxN1TOeQlVS6UW/Xk9.KifQt230OfRUZcp176cYBgL4WjofT1y"], ["updated_at", "2015-01-12 16:54:42.919538"], ["username", "person13"]]
103309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103310
+ Ddr::Models::Error
103311
+ Usergroups are ["public", "registered"]
103312
+ [CANCAN] Checking read permissions for user: person13 with groups: ["public", "registered"]
103313
+ [CANCAN] edit_groups: []
103314
+ [CANCAN] read_groups: []
103315
+ [CANCAN] edit_users: []
103316
+ [CANCAN] read_users: []
103317
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103318
+  (0.6ms) rollback transaction
103319
+  (0.0ms) begin transaction
103320
+  (0.0ms) SAVEPOINT active_record_1
103321
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person14') LIMIT 1
103322
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person14@example.com' LIMIT 1
103323
+ Binary data inserted for `string` type on column `encrypted_password`
103324
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:43.157557"], ["email", "person14@example.com"], ["encrypted_password", "$2a$04$0AsMD.4leLqvIbNjb7tLmOleRrlRh.M5bk9dGjRrBzfOqUjRyZMh2"], ["updated_at", "2015-01-12 16:54:43.157557"], ["username", "person14"]]
103325
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103326
+ Ddr::Models::Error
103327
+ Usergroups are ["public", "registered"]
103328
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1
103329
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1
103330
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1
103331
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1
103332
+  (0.1ms) SAVEPOINT active_record_1
103333
+ SQL (1.5ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:44.870994"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:43.161876"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:344"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:44.870994"]]
103334
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1
103335
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1
103336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103337
+ [CANCAN] Checking read permissions for user: person14 with groups: ["public", "registered"]
103338
+ [CANCAN] edit_groups: []
103339
+ [CANCAN] read_groups: []
103340
+ [CANCAN] edit_users: []
103341
+ [CANCAN] read_users: []
103342
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103343
+  (1.5ms) rollback transaction
103344
+  (0.1ms) begin transaction
103345
+ Ddr::Events::FixityCheckEvent Load (0.6ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103346
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103347
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103348
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103349
+  (0.1ms) SAVEPOINT active_record_1
103350
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:46.640713"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:45.477824"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:345"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:46.640713"]]
103351
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103352
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103353
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103354
+  (0.1ms) SAVEPOINT active_record_1
103355
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person15') LIMIT 1
103356
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person15@example.com' LIMIT 1
103357
+ Binary data inserted for `string` type on column `encrypted_password`
103358
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:46.822401"], ["email", "person15@example.com"], ["encrypted_password", "$2a$04$7jdpu99pGkCOiLRSIHFm6.yEGOMdMudxj9AffHDovf9GBbXwjC/dC"], ["updated_at", "2015-01-12 16:54:46.822401"], ["username", "person15"]]
103359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103360
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103361
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1
103362
+ Ddr::Models::Error
103363
+ Usergroups are ["public", "registered"]
103364
+ [CANCAN] Checking read permissions for user: person15 with groups: ["public", "registered"]
103365
+ [CANCAN] edit_groups: []
103366
+ [CANCAN] read_groups: []
103367
+ [CANCAN] edit_users: []
103368
+ [CANCAN] read_users: ["person15"]
103369
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103370
+  (1.1ms) rollback transaction
103371
+  (0.1ms) begin transaction
103372
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103373
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103374
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103375
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103376
+  (0.1ms) SAVEPOINT active_record_1
103377
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:48.170601"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:47.266294"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:346"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:48.170601"]]
103378
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103379
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103380
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103381
+  (0.0ms) SAVEPOINT active_record_1
103382
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person16') LIMIT 1
103383
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person16@example.com' LIMIT 1
103384
+ Binary data inserted for `string` type on column `encrypted_password`
103385
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:48.331814"], ["email", "person16@example.com"], ["encrypted_password", "$2a$04$1.O/SM2mZCAcIAMJ6NHDBOmc6grV0GYQA3KJEtIN3CTOGjgZ0VAxq"], ["updated_at", "2015-01-12 16:54:48.331814"], ["username", "person16"]]
103386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103387
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103388
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103389
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103390
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1
103391
+ Ddr::Models::Error
103392
+ Usergroups are ["public", "registered"]
103393
+ [CANCAN] Checking edit permissions for user: person16 with groups: ["public", "registered"]
103394
+ [CANCAN] edit_groups: []
103395
+ [CANCAN] edit_users: ["person16"]
103396
+ [CANCAN] decision: true
103397
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103398
+  (1.2ms) rollback transaction
103399
+  (0.1ms) begin transaction
103400
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103401
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103402
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103403
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103404
+  (0.2ms) SAVEPOINT active_record_1
103405
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:49.860438"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:49.006482"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:347"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:49.860438"]]
103406
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103407
+ Ddr::Events::VirusCheckEvent Load (7.6ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103408
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103409
+  (0.1ms) SAVEPOINT active_record_1
103410
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person17') LIMIT 1
103411
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person17@example.com' LIMIT 1
103412
+ Binary data inserted for `string` type on column `encrypted_password`
103413
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:50.057826"], ["email", "person17@example.com"], ["encrypted_password", "$2a$04$QVPlI4t2myxb.xw6iMft.OFG54.w9Bu9qpHJ2fGGCyJM5gw6E4r4S"], ["updated_at", "2015-01-12 16:54:50.057826"], ["username", "person17"]]
103414
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103415
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103416
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103417
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103418
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1
103419
+ Ddr::Models::Error
103420
+ Usergroups are ["public", "registered"]
103421
+ [CANCAN] Checking edit permissions for user: person17 with groups: ["public", "registered"]
103422
+ [CANCAN] edit_groups: []
103423
+ [CANCAN] edit_users: []
103424
+ [CANCAN] decision: false
103425
+ [CANCAN] Checking read permissions for user: person17 with groups: ["public", "registered"]
103426
+ [CANCAN] edit_groups: []
103427
+ [CANCAN] read_groups: []
103428
+ [CANCAN] edit_users: []
103429
+ [CANCAN] read_users: ["person17"]
103430
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103431
+  (1.1ms) rollback transaction
103432
+  (0.1ms) begin transaction
103433
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103434
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103435
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103436
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103437
+  (0.1ms) SAVEPOINT active_record_1
103438
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:51.606165"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:50.692257"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:348"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:51.606165"]]
103439
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103440
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103442
+  (0.1ms) SAVEPOINT active_record_1
103443
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person18') LIMIT 1
103444
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person18@example.com' LIMIT 1
103445
+ Binary data inserted for `string` type on column `encrypted_password`
103446
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:51.788094"], ["email", "person18@example.com"], ["encrypted_password", "$2a$04$jB6SxYBRFIdR608//4l/vO39CW8MCiIex9U/A5VHI3k3waBr8ql0O"], ["updated_at", "2015-01-12 16:54:51.788094"], ["username", "person18"]]
103447
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103448
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103449
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1
103450
+ Ddr::Models::Error
103451
+ Usergroups are ["public", "registered"]
103452
+ [CANCAN] Checking edit permissions for user: person18 with groups: ["public", "registered"]
103453
+ [CANCAN] edit_groups: []
103454
+ [CANCAN] edit_users: []
103455
+ [CANCAN] decision: false
103456
+ [CANCAN] Checking read permissions for user: person18 with groups: ["public", "registered"]
103457
+ [CANCAN] edit_groups: []
103458
+ [CANCAN] read_groups: []
103459
+ [CANCAN] edit_users: []
103460
+ [CANCAN] read_users: []
103461
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103462
+  (1.1ms) rollback transaction
103463
+  (0.0ms) begin transaction
103464
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103465
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103466
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103467
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103468
+  (0.1ms) SAVEPOINT active_record_1
103469
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:53.273508"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:52.262843"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:349"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:53.273508"]]
103470
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103471
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103472
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103473
+  (0.1ms) SAVEPOINT active_record_1
103474
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person19') LIMIT 1
103475
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person19@example.com' LIMIT 1
103476
+ Binary data inserted for `string` type on column `encrypted_password`
103477
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:53.442152"], ["email", "person19@example.com"], ["encrypted_password", "$2a$04$wmkuFUxbyBJ5fWzbLvj/Tuoy8Tweh0ccoEgy1Qb5LFks82nDvMlcu"], ["updated_at", "2015-01-12 16:54:53.442152"], ["username", "person19"]]
103478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103479
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103480
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1
103481
+ Ddr::Models::Error
103482
+ Usergroups are ["public", "registered"]
103483
+ [CANCAN] Checking edit permissions for user: person19 with groups: ["public", "registered"]
103484
+ [CANCAN] edit_groups: []
103485
+ [CANCAN] edit_users: ["person19"]
103486
+ [CANCAN] decision: true
103487
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103488
+  (1.4ms) rollback transaction
103489
+  (0.1ms) begin transaction
103490
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103491
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103492
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103493
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103494
+  (0.1ms) SAVEPOINT active_record_1
103495
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:54.855898"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:53.900634"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:350"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:54.855898"]]
103496
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103497
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103498
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103499
+  (0.1ms) SAVEPOINT active_record_1
103500
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person20') LIMIT 1
103501
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person20@example.com' LIMIT 1
103502
+ Binary data inserted for `string` type on column `encrypted_password`
103503
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:55.038551"], ["email", "person20@example.com"], ["encrypted_password", "$2a$04$LfBPFAPVrKO18vaCgvfV6e1J.E/Q7hLRqYWeuk7vENBGaLByIc8zm"], ["updated_at", "2015-01-12 16:54:55.038551"], ["username", "person20"]]
103504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103505
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103506
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1
103507
+ Ddr::Models::Error
103508
+ Usergroups are ["public", "registered"]
103509
+ [CANCAN] Checking edit permissions for user: person20 with groups: ["public", "registered"]
103510
+ [CANCAN] edit_groups: []
103511
+ [CANCAN] edit_users: []
103512
+ [CANCAN] decision: false
103513
+ [CANCAN] Checking read permissions for user: person20 with groups: ["public", "registered"]
103514
+ [CANCAN] edit_groups: []
103515
+ [CANCAN] read_groups: []
103516
+ [CANCAN] edit_users: []
103517
+ [CANCAN] read_users: ["person20"]
103518
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103519
+  (1.2ms) rollback transaction
103520
+  (0.1ms) begin transaction
103521
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1
103522
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1
103523
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1
103524
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1
103525
+  (0.1ms) SAVEPOINT active_record_1
103526
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.332618"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:55.539310"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:351"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:54:56.332618"]]
103527
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1
103528
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1
103529
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103530
+  (0.0ms) SAVEPOINT active_record_1
103531
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person21') LIMIT 1
103532
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person21@example.com' LIMIT 1
103533
+ Binary data inserted for `string` type on column `encrypted_password`
103534
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.492674"], ["email", "person21@example.com"], ["encrypted_password", "$2a$04$6gjSfrhxHAW0kH6Co24pb.MC82U0mPiS5H6MzDHopJlaevU1nptty"], ["updated_at", "2015-01-12 16:54:56.492674"], ["username", "person21"]]
103535
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103536
+ Ddr::Models::Error
103537
+ Usergroups are ["public", "registered"]
103538
+ [CANCAN] Checking edit permissions for user: person21 with groups: ["public", "registered"]
103539
+ [CANCAN] edit_groups: []
103540
+ [CANCAN] edit_users: []
103541
+ [CANCAN] decision: false
103542
+ [CANCAN] Checking read permissions for user: person21 with groups: ["public", "registered"]
103543
+ [CANCAN] edit_groups: []
103544
+ [CANCAN] read_groups: []
103545
+ [CANCAN] edit_users: []
103546
+ [CANCAN] read_users: []
103547
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103548
+  (1.2ms) rollback transaction
103549
+  (0.1ms) begin transaction
103550
+  (0.1ms) SAVEPOINT active_record_1
103551
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person22') LIMIT 1
103552
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person22@example.com' LIMIT 1
103553
+ Binary data inserted for `string` type on column `encrypted_password`
103554
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.720543"], ["email", "person22@example.com"], ["encrypted_password", "$2a$04$2GMLs1A9aPlT014Df90LDOboBEHY2m/j8gzwFOy6QkpqX2R6Mg8Jq"], ["updated_at", "2015-01-12 16:54:56.720543"], ["username", "person22"]]
103555
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103556
+ Ddr::Models::Error
103557
+ Usergroups are ["public", "registered"]
103558
+ [CANCAN] Checking read permissions for user: person22 with groups: ["public", "registered"]
103559
+ [CANCAN] edit_groups: []
103560
+ [CANCAN] read_groups: []
103561
+ [CANCAN] edit_users: []
103562
+ [CANCAN] read_users: []
103563
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103564
+  (0.8ms) rollback transaction
103565
+  (0.1ms) begin transaction
103566
+  (0.1ms) SAVEPOINT active_record_1
103567
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person23') LIMIT 1
103568
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person23@example.com' LIMIT 1
103569
+ Binary data inserted for `string` type on column `encrypted_password`
103570
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.757439"], ["email", "person23@example.com"], ["encrypted_password", "$2a$04$GyRIi7h./jB6OzSOhmCDwumzna2dwkGrsb2yobEH2bukQVlDpcJCi"], ["updated_at", "2015-01-12 16:54:56.757439"], ["username", "person23"]]
103571
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103572
+ Ddr::Models::Error
103573
+ Usergroups are ["public", "registered"]
103574
+ [CANCAN] Checking read permissions for user: person23 with groups: ["public", "registered"]
103575
+ [CANCAN] edit_groups: []
103576
+ [CANCAN] read_groups: []
103577
+ [CANCAN] edit_users: []
103578
+ [CANCAN] read_users: ["person23"]
103579
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103580
+  (0.7ms) rollback transaction
103581
+  (0.1ms) begin transaction
103582
+  (0.0ms) SAVEPOINT active_record_1
103583
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person24') LIMIT 1
103584
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person24@example.com' LIMIT 1
103585
+ Binary data inserted for `string` type on column `encrypted_password`
103586
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.789316"], ["email", "person24@example.com"], ["encrypted_password", "$2a$04$stQ9fgCYJewaii71zD2FkuQS9XB2byIQ1tRCrhE6kYatEwosw8.ha"], ["updated_at", "2015-01-12 16:54:56.789316"], ["username", "person24"]]
103587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103588
+ Ddr::Models::Error
103589
+ Usergroups are ["public", "registered"]
103590
+ [CANCAN] Checking read permissions for user: person24 with groups: ["public", "registered"]
103591
+ [CANCAN] edit_groups: []
103592
+ [CANCAN] read_groups: []
103593
+ [CANCAN] edit_users: ["person24"]
103594
+ [CANCAN] read_users: ["person24"]
103595
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103596
+  (0.7ms) rollback transaction
103597
+  (0.1ms) begin transaction
103598
+  (0.1ms) SAVEPOINT active_record_1
103599
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person25') LIMIT 1
103600
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person25@example.com' LIMIT 1
103601
+ Binary data inserted for `string` type on column `encrypted_password`
103602
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.820242"], ["email", "person25@example.com"], ["encrypted_password", "$2a$04$fZghaHexZ/o4LkeYu8ear..YQMvKzm4n0S60P0YVgi6f73A4XeA/i"], ["updated_at", "2015-01-12 16:54:56.820242"], ["username", "person25"]]
103603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103604
+ Ddr::Models::Error
103605
+ Usergroups are ["public", "registered"]
103606
+ [CANCAN] Checking edit permissions for user: person25 with groups: ["public", "registered"]
103607
+ [CANCAN] edit_groups: []
103608
+ [CANCAN] edit_users: []
103609
+ [CANCAN] decision: false
103610
+ [CANCAN] Checking read permissions for user: person25 with groups: ["public", "registered"]
103611
+ [CANCAN] edit_groups: []
103612
+ [CANCAN] read_groups: []
103613
+ [CANCAN] edit_users: []
103614
+ [CANCAN] read_users: []
103615
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103616
+  (0.7ms) rollback transaction
103617
+  (0.1ms) begin transaction
103618
+  (0.1ms) SAVEPOINT active_record_1
103619
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person26') LIMIT 1
103620
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person26@example.com' LIMIT 1
103621
+ Binary data inserted for `string` type on column `encrypted_password`
103622
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.858097"], ["email", "person26@example.com"], ["encrypted_password", "$2a$04$JHp4a4WmeB0ZvynLrozA9ubiNozy8QElzcq1hk5qKrxVFyxuijNAm"], ["updated_at", "2015-01-12 16:54:56.858097"], ["username", "person26"]]
103623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103624
+ Ddr::Models::Error
103625
+ Usergroups are ["public", "registered"]
103626
+ [CANCAN] Checking edit permissions for user: person26 with groups: ["public", "registered"]
103627
+ [CANCAN] edit_groups: []
103628
+ [CANCAN] edit_users: []
103629
+ [CANCAN] decision: false
103630
+ [CANCAN] Checking read permissions for user: person26 with groups: ["public", "registered"]
103631
+ [CANCAN] edit_groups: []
103632
+ [CANCAN] read_groups: []
103633
+ [CANCAN] edit_users: []
103634
+ [CANCAN] read_users: ["person26"]
103635
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103636
+  (0.8ms) rollback transaction
103637
+  (0.1ms) begin transaction
103638
+  (0.0ms) SAVEPOINT active_record_1
103639
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person27') LIMIT 1
103640
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person27@example.com' LIMIT 1
103641
+ Binary data inserted for `string` type on column `encrypted_password`
103642
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.892259"], ["email", "person27@example.com"], ["encrypted_password", "$2a$04$dtv.f0rxfrJcWqJ7t2fdHe7ziQUGpa0.JyhTxbG9hWE33nkMydoq6"], ["updated_at", "2015-01-12 16:54:56.892259"], ["username", "person27"]]
103643
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103644
+ Ddr::Models::Error
103645
+ Usergroups are ["public", "registered"]
103646
+ [CANCAN] Checking edit permissions for user: person27 with groups: ["public", "registered"]
103647
+ [CANCAN] edit_groups: []
103648
+ [CANCAN] edit_users: ["person27"]
103649
+ [CANCAN] decision: true
103650
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103651
+  (0.9ms) rollback transaction
103652
+  (0.1ms) begin transaction
103653
+  (0.1ms) SAVEPOINT active_record_1
103654
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person28') LIMIT 1
103655
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person28@example.com' LIMIT 1
103656
+ Binary data inserted for `string` type on column `encrypted_password`
103657
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.926064"], ["email", "person28@example.com"], ["encrypted_password", "$2a$04$C/V67/CwaTPaNO7a8ajH7umi8u4NA4miMKxM47gokmoc7sN6vCvx6"], ["updated_at", "2015-01-12 16:54:56.926064"], ["username", "person28"]]
103658
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103659
+ Ddr::Models::Error
103660
+ Usergroups are ["public", "registered"]
103661
+ [CANCAN] Checking edit permissions for user: person28 with groups: ["public", "registered"]
103662
+ [CANCAN] edit_groups: []
103663
+ [CANCAN] edit_users: []
103664
+ [CANCAN] decision: false
103665
+ [CANCAN] Checking read permissions for user: person28 with groups: ["public", "registered"]
103666
+ [CANCAN] edit_groups: []
103667
+ [CANCAN] read_groups: []
103668
+ [CANCAN] edit_users: []
103669
+ [CANCAN] read_users: []
103670
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103671
+  (0.9ms) rollback transaction
103672
+  (0.1ms) begin transaction
103673
+  (0.1ms) SAVEPOINT active_record_1
103674
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person29') LIMIT 1
103675
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person29@example.com' LIMIT 1
103676
+ Binary data inserted for `string` type on column `encrypted_password`
103677
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:56.973965"], ["email", "person29@example.com"], ["encrypted_password", "$2a$04$wnDijAs2NWkNZY2IbJ1v2.B0l0U1tfJI/P6pgAzDOA94ZaXDaUfmS"], ["updated_at", "2015-01-12 16:54:56.973965"], ["username", "person29"]]
103678
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103679
+ Ddr::Models::Error
103680
+ Usergroups are ["public", "registered"]
103681
+ [CANCAN] Checking edit permissions for user: person29 with groups: ["public", "registered"]
103682
+ [CANCAN] edit_groups: []
103683
+ [CANCAN] edit_users: []
103684
+ [CANCAN] decision: false
103685
+ [CANCAN] Checking read permissions for user: person29 with groups: ["public", "registered"]
103686
+ [CANCAN] edit_groups: []
103687
+ [CANCAN] read_groups: []
103688
+ [CANCAN] edit_users: []
103689
+ [CANCAN] read_users: ["person29"]
103690
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103691
+  (0.9ms) rollback transaction
103692
+  (0.1ms) begin transaction
103693
+  (0.1ms) SAVEPOINT active_record_1
103694
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person30') LIMIT 1
103695
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person30@example.com' LIMIT 1
103696
+ Binary data inserted for `string` type on column `encrypted_password`
103697
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:57.011336"], ["email", "person30@example.com"], ["encrypted_password", "$2a$04$kRweXvo9gXzvHKTteZIRh.nB9TvP055GhhU1VDSNWbYZcjI5XlPKC"], ["updated_at", "2015-01-12 16:54:57.011336"], ["username", "person30"]]
103698
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103699
+ Ddr::Models::Error
103700
+ Usergroups are ["public", "registered"]
103701
+ [CANCAN] Checking edit permissions for user: person30 with groups: ["public", "registered"]
103702
+ [CANCAN] edit_groups: []
103703
+ [CANCAN] edit_users: ["person30"]
103704
+ [CANCAN] decision: true
103705
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103706
+  (0.9ms) rollback transaction
103707
+  (0.1ms) begin transaction
103708
+  (0.0ms) SAVEPOINT active_record_1
103709
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person31') LIMIT 1
103710
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person31@example.com' LIMIT 1
103711
+ Binary data inserted for `string` type on column `encrypted_password`
103712
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:57.044984"], ["email", "person31@example.com"], ["encrypted_password", "$2a$04$BEa9gouxeTWQskVgEN/Ly.eTz7EdgLQIfwyOC4uB48Fn2La46BEyW"], ["updated_at", "2015-01-12 16:54:57.044984"], ["username", "person31"]]
103713
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103714
+ Ddr::Models::Error
103715
+ Usergroups are ["public", "registered"]
103716
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:352' ORDER BY event_date_time DESC LIMIT 1
103717
+ [CANCAN] Checking read permissions for user: person31 with groups: ["public", "registered"]
103718
+ [CANCAN] edit_groups: []
103719
+ [CANCAN] read_groups: []
103720
+ [CANCAN] edit_users: []
103721
+ [CANCAN] read_users: []
103722
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103723
+  (0.8ms) rollback transaction
103724
+  (0.1ms) begin transaction
103725
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:353' ORDER BY event_date_time DESC LIMIT 1
103726
+  (0.1ms) SAVEPOINT active_record_1
103727
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person32') LIMIT 1
103728
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person32@example.com' LIMIT 1
103729
+ Binary data inserted for `string` type on column `encrypted_password`
103730
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:58.534477"], ["email", "person32@example.com"], ["encrypted_password", "$2a$04$B5iD2Xw6dfjygeqUYZ3O/euSHg9VzYYUbwUOxvRoglkwRoU0jA69m"], ["updated_at", "2015-01-12 16:54:58.534477"], ["username", "person32"]]
103731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103732
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:353" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
103733
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:353' ORDER BY event_date_time DESC LIMIT 1
103734
+ Ddr::Models::Error
103735
+ Usergroups are ["public", "registered"]
103736
+ [CANCAN] Checking read permissions for user: person32 with groups: ["public", "registered"]
103737
+ [CANCAN] edit_groups: []
103738
+ [CANCAN] read_groups: []
103739
+ [CANCAN] edit_users: []
103740
+ [CANCAN] read_users: ["person32"]
103741
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103742
+  (0.6ms) rollback transaction
103743
+  (0.0ms) begin transaction
103744
+  (0.1ms) SAVEPOINT active_record_1
103745
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person33') LIMIT 1
103746
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person33@example.com' LIMIT 1
103747
+ Binary data inserted for `string` type on column `encrypted_password`
103748
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:54:58.901461"], ["email", "person33@example.com"], ["encrypted_password", "$2a$04$qANfutmWkxcMAoyxBS9JoeyrsQYd/VQ3glKMtR7KiB5A7lVh237wK"], ["updated_at", "2015-01-12 16:54:58.901461"], ["username", "person33"]]
103749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103750
+ Ddr::Models::Error
103751
+ Usergroups are ["public", "registered"]
103752
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1
103753
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1
103754
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1
103755
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1
103756
+  (0.1ms) SAVEPOINT active_record_1
103757
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:00.128397"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:54:58.905679"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:354"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:55:00.128397"]]
103758
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1
103759
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1
103760
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103761
+ [CANCAN] Checking read permissions for user: person33 with groups: ["public", "registered"]
103762
+ [CANCAN] edit_groups: []
103763
+ [CANCAN] read_groups: []
103764
+ [CANCAN] edit_users: []
103765
+ [CANCAN] read_users: []
103766
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103767
+  (1.0ms) rollback transaction
103768
+  (0.0ms) begin transaction
103769
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103770
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103771
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103772
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103773
+  (0.1ms) SAVEPOINT active_record_1
103774
+ SQL (0.5ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:01.565301"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:55:00.511067"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:355"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:55:01.565301"]]
103775
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103776
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103777
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103778
+  (0.1ms) SAVEPOINT active_record_1
103779
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person34') LIMIT 1
103780
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person34@example.com' LIMIT 1
103781
+ Binary data inserted for `string` type on column `encrypted_password`
103782
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:01.726366"], ["email", "person34@example.com"], ["encrypted_password", "$2a$04$5/h95d12etv4uZWc9LN0vujEe7a8JQejus.zCtZ3pt.5hZeNKOpB2"], ["updated_at", "2015-01-12 16:55:01.726366"], ["username", "person34"]]
103783
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103784
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103785
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1
103786
+ Ddr::Models::Error
103787
+ Usergroups are ["public", "registered"]
103788
+ [CANCAN] Checking read permissions for user: person34 with groups: ["public", "registered"]
103789
+ [CANCAN] edit_groups: []
103790
+ [CANCAN] read_groups: []
103791
+ [CANCAN] edit_users: []
103792
+ [CANCAN] read_users: ["person34"]
103793
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103794
+  (1.3ms) rollback transaction
103795
+  (0.1ms) begin transaction
103796
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103797
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103798
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103799
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103800
+  (0.1ms) SAVEPOINT active_record_1
103801
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:03.224437"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:55:02.400604"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:356"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:55:03.224437"]]
103802
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103803
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103804
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103805
+  (0.1ms) SAVEPOINT active_record_1
103806
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person35') LIMIT 1
103807
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person35@example.com' LIMIT 1
103808
+ Binary data inserted for `string` type on column `encrypted_password`
103809
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:03.636205"], ["email", "person35@example.com"], ["encrypted_password", "$2a$04$5sT.v17vreu/PbtWaujV0.nUt2NJYh9dc7d.A8CEuxRKYuLZGLaee"], ["updated_at", "2015-01-12 16:55:03.636205"], ["username", "person35"]]
103810
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103811
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103812
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1
103813
+ Ddr::Models::Error
103814
+ Usergroups are ["public", "registered"]
103815
+ [CANCAN] Checking edit permissions for user: person35 with groups: ["public", "registered"]
103816
+ [CANCAN] edit_groups: []
103817
+ [CANCAN] edit_users: []
103818
+ [CANCAN] decision: false
103819
+ [CANCAN] Checking read permissions for user: person35 with groups: ["public", "registered"]
103820
+ [CANCAN] edit_groups: []
103821
+ [CANCAN] read_groups: []
103822
+ [CANCAN] edit_users: []
103823
+ [CANCAN] read_users: []
103824
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103825
+  (1.0ms) rollback transaction
103826
+  (0.1ms) begin transaction
103827
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103828
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103829
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103830
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103831
+  (0.1ms) SAVEPOINT active_record_1
103832
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:04.811463"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:55:03.988580"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:357"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:55:04.811463"]]
103833
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103834
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103835
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103836
+  (0.1ms) SAVEPOINT active_record_1
103837
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person36') LIMIT 1
103838
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person36@example.com' LIMIT 1
103839
+ Binary data inserted for `string` type on column `encrypted_password`
103840
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:04.968339"], ["email", "person36@example.com"], ["encrypted_password", "$2a$04$t89ZBCmj0yRmqz1fd4WUauLNsmqaOhyHyNnV4YZp8DNvPX2Np.sYW"], ["updated_at", "2015-01-12 16:55:04.968339"], ["username", "person36"]]
103841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103842
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103843
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103844
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103845
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1
103846
+ Ddr::Models::Error
103847
+ Usergroups are ["public", "registered"]
103848
+ [CANCAN] Checking edit permissions for user: person36 with groups: ["public", "registered"]
103849
+ [CANCAN] edit_groups: []
103850
+ [CANCAN] edit_users: []
103851
+ [CANCAN] decision: false
103852
+ [CANCAN] Checking read permissions for user: person36 with groups: ["public", "registered"]
103853
+ [CANCAN] edit_groups: []
103854
+ [CANCAN] read_groups: []
103855
+ [CANCAN] edit_users: []
103856
+ [CANCAN] read_users: ["person36"]
103857
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103858
+  (1.2ms) rollback transaction
103859
+  (0.1ms) begin transaction
103860
+  (0.0ms) SAVEPOINT active_record_1
103861
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person37') LIMIT 1
103862
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person37@example.com' LIMIT 1
103863
+ Binary data inserted for `string` type on column `encrypted_password`
103864
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:05.725374"], ["email", "person37@example.com"], ["encrypted_password", "$2a$04$emo9t2aJYOdijh2qG2I4iOWGq8M2OlUAvKZttpcUr/FSx5AP7kGry"], ["updated_at", "2015-01-12 16:55:05.725374"], ["username", "person37"]]
103865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103866
+ Ddr::Models::Error
103867
+ Usergroups are ["public", "registered"]
103868
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1
103869
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1
103870
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1
103871
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1
103872
+  (0.1ms) SAVEPOINT active_record_1
103873
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:06.758067"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:55:05.730158"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:358"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:55:06.758067"]]
103874
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1
103875
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1
103876
+  (0.2ms) RELEASE SAVEPOINT active_record_1
103877
+ [CANCAN] Checking edit permissions for user: person37 with groups: ["public", "registered"]
103878
+ [CANCAN] edit_groups: []
103879
+ [CANCAN] edit_users: []
103880
+ [CANCAN] decision: false
103881
+ [CANCAN] Checking read permissions for user: person37 with groups: ["public", "registered"]
103882
+ [CANCAN] edit_groups: []
103883
+ [CANCAN] read_groups: []
103884
+ [CANCAN] edit_users: []
103885
+ [CANCAN] read_users: []
103886
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103887
+  (0.9ms) rollback transaction
103888
+  (0.1ms) begin transaction
103889
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103890
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103891
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103892
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103893
+  (0.1ms) SAVEPOINT active_record_1
103894
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:07.938751"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 16:55:07.137024"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:359"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 16:55:07.938751"]]
103895
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103896
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103897
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103898
+  (0.0ms) SAVEPOINT active_record_1
103899
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person38') LIMIT 1
103900
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person38@example.com' LIMIT 1
103901
+ Binary data inserted for `string` type on column `encrypted_password`
103902
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 16:55:08.112556"], ["email", "person38@example.com"], ["encrypted_password", "$2a$04$GgFkK3TYjBbFnd1Xy0OSVeZpWQKHg1N2fTvMQ.glLQmyilcq3HuMS"], ["updated_at", "2015-01-12 16:55:08.112556"], ["username", "person38"]]
103903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103904
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103905
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1
103906
+ Ddr::Models::Error
103907
+ Usergroups are ["public", "registered"]
103908
+ [CANCAN] Checking edit permissions for user: person38 with groups: ["public", "registered"]
103909
+ [CANCAN] edit_groups: []
103910
+ [CANCAN] edit_users: []
103911
+ [CANCAN] decision: false
103912
+ [CANCAN] Checking read permissions for user: person38 with groups: ["public", "registered"]
103913
+ [CANCAN] edit_groups: []
103914
+ [CANCAN] read_groups: []
103915
+ [CANCAN] edit_users: []
103916
+ [CANCAN] read_users: ["person38"]
103917
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103918
+  (0.8ms) rollback transaction
103919
+ Using the default predicate_mappings.yml that comes with active-fedora. If you want to override this, pass the path to predicate_mappings.yml to ActiveFedora - ie. ActiveFedora.init(:predicate_mappings_config_path => '/path/to/predicate_mappings.yml') - or set Rails.root and put predicate_mappings.yml into #{Rails.root}/config.
103920
+  (2.6ms) DELETE FROM "events";
103921
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
103922
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'events';
103923
+  (2.0ms) DELETE FROM "users";
103924
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
103925
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
103926
+ Using the default fedora.yml that comes with active-fedora. If you want to override this, pass the path to fedora.yml to ActiveFedora - ie. ActiveFedora.init(:fedora_config_path => '/path/to/fedora.yml') - or set Rails.root and put fedora.yml into #{Rails.root}/config.
103927
+ ActiveFedora: loading fedora config from /Users/dc/.rvm/gems/ruby-2.1.2@ddr-models/gems/active-fedora-7.1.2/config/fedora.yml
103928
+ Using the default fedora.yml that comes with active-fedora. If you want to override this, pass the path to fedora.yml to ActiveFedora - ie. ActiveFedora.init(:fedora_config_path => '/path/to/fedora.yml') - or set Rails.root and put fedora.yml into #{Rails.root}/config.
103929
+ ActiveFedora: loading solr config from /Users/dc/.rvm/gems/ruby-2.1.2@ddr-models/gems/active-fedora-7.1.2/config/solr.yml
103930
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103931
+  (0.1ms) begin transaction
103932
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103933
+  (0.1ms) rollback transaction
103934
+  (0.1ms) begin transaction
103935
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103936
+  (0.1ms) rollback transaction
103937
+  (0.0ms) begin transaction
103938
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103939
+  (0.1ms) rollback transaction
103940
+  (0.1ms) begin transaction
103941
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103942
+  (0.1ms) rollback transaction
103943
+  (0.0ms) begin transaction
103944
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103945
+  (0.1ms) rollback transaction
103946
+  (0.0ms) begin transaction
103947
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103948
+  (0.1ms) rollback transaction
103949
+  (0.1ms) begin transaction
103950
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103951
+  (0.1ms) rollback transaction
103952
+  (0.1ms) begin transaction
103953
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103954
+  (0.1ms) rollback transaction
103955
+  (0.0ms) begin transaction
103956
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103957
+  (0.1ms) rollback transaction
103958
+  (0.0ms) begin transaction
103959
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103960
+  (0.1ms) rollback transaction
103961
+  (0.0ms) begin transaction
103962
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103963
+  (0.1ms) rollback transaction
103964
+  (0.0ms) begin transaction
103965
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103966
+  (0.1ms) rollback transaction
103967
+  (0.1ms) begin transaction
103968
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103969
+  (0.1ms) rollback transaction
103970
+  (0.1ms) begin transaction
103971
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103972
+  (0.1ms) rollback transaction
103973
+  (0.0ms) begin transaction
103974
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103975
+  (0.1ms) rollback transaction
103976
+  (0.0ms) begin transaction
103977
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103978
+  (0.1ms) rollback transaction
103979
+  (0.0ms) begin transaction
103980
+  (0.1ms) SAVEPOINT active_record_1
103981
+ SQL (0.5ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:38:41.071582"], ["event_date_time", "2015-01-12 22:38:41.070949"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "DDR 1.8.0"], ["summary", "Object updated"], ["type", "Ddr::Events::UpdateEvent"], ["updated_at", "2015-01-12 22:38:41.071582"]]
103982
+  (0.1ms) RELEASE SAVEPOINT active_record_1
103983
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103984
+  (0.7ms) rollback transaction
103985
+  (0.1ms) begin transaction
103986
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103987
+  (0.1ms) rollback transaction
103988
+  (0.1ms) begin transaction
103989
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103990
+  (0.1ms) rollback transaction
103991
+  (0.1ms) begin transaction
103992
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103993
+  (0.1ms) rollback transaction
103994
+  (0.0ms) begin transaction
103995
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103996
+  (0.1ms) rollback transaction
103997
+  (0.1ms) begin transaction
103998
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
103999
+  (0.1ms) rollback transaction
104000
+  (0.0ms) begin transaction
104001
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104002
+  (0.1ms) rollback transaction
104003
+  (0.1ms) begin transaction
104004
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104005
+  (0.1ms) rollback transaction
104006
+  (0.1ms) begin transaction
104007
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:362' ORDER BY event_date_time DESC LIMIT 1
104008
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:362" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104009
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:362' ORDER BY event_date_time DESC LIMIT 1
104010
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104011
+  (0.1ms) rollback transaction
104012
+  (0.0ms) begin transaction
104013
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104014
+  (0.1ms) rollback transaction
104015
+  (0.0ms) begin transaction
104016
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104017
+  (0.1ms) rollback transaction
104018
+  (0.0ms) begin transaction
104019
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104020
+  (0.1ms) rollback transaction
104021
+  (0.0ms) begin transaction
104022
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:363' ORDER BY event_date_time DESC LIMIT 1
104023
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104024
+  (0.1ms) rollback transaction
104025
+  (0.1ms) begin transaction
104026
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104027
+  (0.1ms) rollback transaction
104028
+  (0.0ms) begin transaction
104029
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104030
+  (0.1ms) rollback transaction
104031
+  (0.0ms) begin transaction
104032
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104033
+  (0.1ms) rollback transaction
104034
+  (0.0ms) begin transaction
104035
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:364' ORDER BY event_date_time DESC LIMIT 1
104036
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:364" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104037
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:364' ORDER BY event_date_time DESC LIMIT 1
104038
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104039
+  (0.1ms) rollback transaction
104040
+  (0.0ms) begin transaction
104041
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:365' ORDER BY event_date_time DESC LIMIT 1
104042
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:365" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104043
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:365' ORDER BY event_date_time DESC LIMIT 1
104044
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104045
+  (0.1ms) rollback transaction
104046
+  (0.1ms) begin transaction
104047
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104048
+  (0.1ms) rollback transaction
104049
+  (0.0ms) begin transaction
104050
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104051
+  (0.1ms) rollback transaction
104052
+  (0.0ms) begin transaction
104053
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104054
+  (0.1ms) rollback transaction
104055
+  (0.1ms) begin transaction
104056
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104057
+  (0.1ms) rollback transaction
104058
+  (0.1ms) begin transaction
104059
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:366' ORDER BY event_date_time DESC LIMIT 1
104060
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:366" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104061
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:366' ORDER BY event_date_time DESC LIMIT 1
104062
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:367' ORDER BY event_date_time DESC LIMIT 1
104063
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:367" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104064
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:367' ORDER BY event_date_time DESC LIMIT 1
104065
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:366" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104066
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:366' ORDER BY event_date_time DESC LIMIT 1
104067
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104068
+  (0.1ms) rollback transaction
104069
+  (0.1ms) begin transaction
104070
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104071
+  (0.1ms) rollback transaction
104072
+  (0.1ms) begin transaction
104073
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104074
+  (0.1ms) rollback transaction
104075
+  (0.0ms) begin transaction
104076
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104077
+  (3.4ms) rollback transaction
104078
+  (0.1ms) begin transaction
104079
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104080
+  (0.1ms) rollback transaction
104081
+  (0.1ms) begin transaction
104082
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104083
+  (0.1ms) rollback transaction
104084
+  (0.1ms) begin transaction
104085
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104086
+  (0.1ms) rollback transaction
104087
+  (0.1ms) begin transaction
104088
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104089
+  (0.1ms) rollback transaction
104090
+  (0.0ms) begin transaction
104091
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104092
+  (0.1ms) rollback transaction
104093
+  (0.1ms) begin transaction
104094
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104095
+  (0.1ms) rollback transaction
104096
+  (0.0ms) begin transaction
104097
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:368' ORDER BY event_date_time DESC LIMIT 1
104098
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104099
+  (0.1ms) rollback transaction
104100
+  (0.0ms) begin transaction
104101
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104102
+  (0.1ms) rollback transaction
104103
+  (0.1ms) begin transaction
104104
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104105
+  (0.1ms) rollback transaction
104106
+  (0.1ms) begin transaction
104107
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104108
+  (0.1ms) rollback transaction
104109
+  (0.0ms) begin transaction
104110
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:369' ORDER BY event_date_time DESC LIMIT 1
104111
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104112
+  (0.1ms) rollback transaction
104113
+  (0.1ms) begin transaction
104114
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:370' ORDER BY event_date_time DESC LIMIT 1
104115
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104116
+  (0.1ms) rollback transaction
104117
+  (0.1ms) begin transaction
104118
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104119
+  (0.1ms) rollback transaction
104120
+  (0.1ms) begin transaction
104121
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104122
+  (0.1ms) rollback transaction
104123
+  (0.0ms) begin transaction
104124
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104125
+  (0.1ms) rollback transaction
104126
+  (0.1ms) begin transaction
104127
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104128
+  (0.1ms) rollback transaction
104129
+  (0.0ms) begin transaction
104130
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:371' ORDER BY event_date_time DESC LIMIT 1
104131
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:372' ORDER BY event_date_time DESC LIMIT 1
104132
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:372" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104133
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:372' ORDER BY event_date_time DESC LIMIT 1
104134
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:371" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104135
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:371' ORDER BY event_date_time DESC LIMIT 1
104136
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104137
+  (0.1ms) rollback transaction
104138
+  (0.1ms) begin transaction
104139
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104140
+  (0.1ms) rollback transaction
104141
+  (0.0ms) begin transaction
104142
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104143
+  (0.1ms) rollback transaction
104144
+  (0.0ms) begin transaction
104145
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:373' ORDER BY event_date_time DESC LIMIT 1
104146
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::DescriptiveMetadataDatastream @pid="changeme:373" @dsid="descMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104147
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:373" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104148
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:373' ORDER BY event_date_time DESC LIMIT 1
104149
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104150
+  (0.1ms) rollback transaction
104151
+  (0.0ms) begin transaction
104152
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:374' ORDER BY event_date_time DESC LIMIT 1
104153
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::DescriptiveMetadataDatastream @pid="changeme:374" @dsid="descMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104154
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:374" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104155
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:374' ORDER BY event_date_time DESC LIMIT 1
104156
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104157
+  (0.1ms) rollback transaction
104158
+  (0.0ms) begin transaction
104159
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104160
+  (0.1ms) rollback transaction
104161
+  (0.0ms) begin transaction
104162
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104163
+  (0.1ms) rollback transaction
104164
+  (0.0ms) begin transaction
104165
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104166
+  (0.1ms) rollback transaction
104167
+  (0.0ms) begin transaction
104168
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104169
+  (0.1ms) rollback transaction
104170
+  (0.0ms) begin transaction
104171
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104172
+  (0.1ms) rollback transaction
104173
+  (0.1ms) begin transaction
104174
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104175
+  (0.1ms) rollback transaction
104176
+  (0.1ms) begin transaction
104177
+ Ddr::Models::Error
104178
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104179
+  (0.1ms) rollback transaction
104180
+  (0.1ms) begin transaction
104181
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104182
+  (0.1ms) rollback transaction
104183
+  (0.0ms) begin transaction
104184
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104185
+  (0.1ms) rollback transaction
104186
+  (0.1ms) begin transaction
104187
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104188
+  (0.1ms) rollback transaction
104189
+  (0.1ms) begin transaction
104190
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104191
+  (0.1ms) rollback transaction
104192
+  (0.0ms) begin transaction
104193
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104194
+  (0.1ms) rollback transaction
104195
+  (0.1ms) begin transaction
104196
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104197
+  (0.1ms) rollback transaction
104198
+  (0.0ms) begin transaction
104199
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104200
+  (0.1ms) rollback transaction
104201
+  (0.0ms) begin transaction
104202
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104203
+  (0.1ms) rollback transaction
104204
+  (0.1ms) begin transaction
104205
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104206
+  (0.1ms) rollback transaction
104207
+  (0.1ms) begin transaction
104208
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104209
+  (0.1ms) rollback transaction
104210
+  (0.1ms) begin transaction
104211
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104212
+  (0.1ms) rollback transaction
104213
+  (0.1ms) begin transaction
104214
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104215
+  (0.1ms) rollback transaction
104216
+  (0.1ms) begin transaction
104217
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104218
+  (0.1ms) rollback transaction
104219
+  (0.0ms) begin transaction
104220
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104221
+  (0.1ms) rollback transaction
104222
+  (0.1ms) begin transaction
104223
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104224
+  (0.1ms) rollback transaction
104225
+  (0.1ms) begin transaction
104226
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104227
+  (0.1ms) rollback transaction
104228
+  (0.0ms) begin transaction
104229
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104230
+  (0.1ms) rollback transaction
104231
+  (0.1ms) begin transaction
104232
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104233
+  (0.1ms) rollback transaction
104234
+  (0.1ms) begin transaction
104235
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104236
+  (0.1ms) rollback transaction
104237
+  (0.0ms) begin transaction
104238
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104239
+  (0.1ms) rollback transaction
104240
+  (0.0ms) begin transaction
104241
+  (0.1ms) SAVEPOINT active_record_1
104242
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:00.213914"], ["event_date_time", "2015-01-12 22:39:00.213422"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "DDR 1.8.0"], ["type", "Ddr::Events::ValidationEvent"], ["updated_at", "2015-01-12 22:39:00.213914"]]
104243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104244
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104245
+  (33.3ms) rollback transaction
104246
+  (0.1ms) begin transaction
104247
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104248
+  (0.1ms) rollback transaction
104249
+  (0.0ms) begin transaction
104250
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104251
+  (0.1ms) rollback transaction
104252
+  (0.0ms) begin transaction
104253
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104254
+  (0.1ms) rollback transaction
104255
+  (0.1ms) begin transaction
104256
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104257
+  (0.1ms) rollback transaction
104258
+  (0.0ms) begin transaction
104259
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104260
+  (0.1ms) rollback transaction
104261
+  (0.0ms) begin transaction
104262
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104263
+  (0.1ms) rollback transaction
104264
+  (0.0ms) begin transaction
104265
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104266
+  (0.1ms) rollback transaction
104267
+  (0.1ms) begin transaction
104268
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104269
+  (0.1ms) rollback transaction
104270
+  (0.1ms) begin transaction
104271
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104272
+  (0.1ms) rollback transaction
104273
+  (0.1ms) begin transaction
104274
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104275
+  (0.1ms) rollback transaction
104276
+  (0.1ms) begin transaction
104277
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104278
+  (0.1ms) rollback transaction
104279
+  (0.1ms) begin transaction
104280
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104281
+  (0.1ms) rollback transaction
104282
+  (0.1ms) begin transaction
104283
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:377' ORDER BY event_date_time DESC LIMIT 1
104284
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:377' ORDER BY event_date_time DESC LIMIT 1
104285
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104286
+  (0.1ms) rollback transaction
104287
+  (0.1ms) begin transaction
104288
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104289
+  (0.1ms) rollback transaction
104290
+  (0.1ms) begin transaction
104291
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104292
+  (0.1ms) rollback transaction
104293
+  (0.1ms) begin transaction
104294
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104295
+  (0.1ms) rollback transaction
104296
+  (0.0ms) begin transaction
104297
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:378' ORDER BY event_date_time DESC LIMIT 1
104298
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:378' ORDER BY event_date_time DESC LIMIT 1
104299
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104300
+  (0.1ms) rollback transaction
104301
+  (0.1ms) begin transaction
104302
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:379' ORDER BY event_date_time DESC LIMIT 1
104303
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:379' ORDER BY event_date_time DESC LIMIT 1
104304
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104305
+  (0.1ms) rollback transaction
104306
+  (0.0ms) begin transaction
104307
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104308
+  (0.1ms) rollback transaction
104309
+  (0.1ms) begin transaction
104310
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104311
+  (0.1ms) rollback transaction
104312
+  (0.1ms) begin transaction
104313
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104314
+  (0.1ms) rollback transaction
104315
+  (0.0ms) begin transaction
104316
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104317
+  (0.1ms) rollback transaction
104318
+  (0.1ms) begin transaction
104319
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:380' ORDER BY event_date_time DESC LIMIT 1
104320
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:380' ORDER BY event_date_time DESC LIMIT 1
104321
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:381' ORDER BY event_date_time DESC LIMIT 1
104322
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:381" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104323
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:381' ORDER BY event_date_time DESC LIMIT 1
104324
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:380" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104325
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:380' ORDER BY event_date_time DESC LIMIT 1
104326
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:380' ORDER BY event_date_time DESC LIMIT 1
104327
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104328
+  (0.1ms) rollback transaction
104329
+  (0.0ms) begin transaction
104330
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104331
+  (0.1ms) rollback transaction
104332
+  (0.0ms) begin transaction
104333
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104334
+  (0.1ms) rollback transaction
104335
+  (0.1ms) begin transaction
104336
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104337
+  (0.1ms) rollback transaction
104338
+  (0.0ms) begin transaction
104339
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104340
+  (0.1ms) rollback transaction
104341
+  (0.0ms) begin transaction
104342
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104343
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104344
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104345
+  (0.1ms) rollback transaction
104346
+  (0.0ms) begin transaction
104347
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1
104348
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1
104349
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1
104350
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1
104351
+  (0.1ms) SAVEPOINT active_record_1
104352
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:08.338349"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-oat6t7: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:07.098594"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:382"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:08.338349"]]
104353
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1
104354
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1
104355
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104356
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104357
+  (0.5ms) rollback transaction
104358
+  (0.1ms) begin transaction
104359
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:383' ORDER BY event_date_time DESC LIMIT 1
104360
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:383' ORDER BY event_date_time DESC LIMIT 1
104361
+  (0.1ms) SAVEPOINT active_record_1
104362
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:09.576716"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.docx20150112-29181-sdf4yq: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:08.849672"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:383"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:09.576716"]]
104363
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:383' ORDER BY event_date_time DESC LIMIT 1
104364
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:383' ORDER BY event_date_time DESC LIMIT 1
104365
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104366
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104367
+  (0.7ms) rollback transaction
104368
+  (0.0ms) begin transaction
104369
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1
104370
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1
104371
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1
104372
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1
104373
+  (0.1ms) SAVEPOINT active_record_1
104374
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:13.387077"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.pdf20150112-29181-9mdugr: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:09.994810"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:384"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:13.387077"]]
104375
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1
104376
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1
104377
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104378
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104379
+  (0.7ms) rollback transaction
104380
+  (0.1ms) begin transaction
104381
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104382
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104383
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104384
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104385
+  (0.1ms) SAVEPOINT active_record_1
104386
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:14.921857"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-2btfqk: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:13.810970"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:385"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:14.921857"]]
104387
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104388
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104389
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104390
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104391
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104392
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104393
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104394
+  (0.1ms) SAVEPOINT active_record_1
104395
+ SQL (1.2ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:15.646056"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image1.tiff20150112-29181-1uk1md1: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:15.112639"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:385"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:15.646056"]]
104396
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104397
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1
104398
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104399
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104400
+  (1.0ms) rollback transaction
104401
+  (0.1ms) begin transaction
104402
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104403
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104404
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104405
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104406
+  (0.1ms) SAVEPOINT active_record_1
104407
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:17.041610"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-oz8r96: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:16.252002"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:386"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:17.041610"]]
104408
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104409
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104410
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104411
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104412
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104413
+  (0.1ms) SAVEPOINT active_record_1
104414
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:17.497241"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.docx20150112-29181-s4v4zr: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:17.203845"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:386"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:17.497241"]]
104415
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104416
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1
104417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104418
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104419
+  (0.9ms) rollback transaction
104420
+  (0.1ms) begin transaction
104421
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104422
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104423
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104424
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104425
+  (0.1ms) SAVEPOINT active_record_1
104426
+ SQL (0.5ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:18.979425"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-1egewfl: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:17.909556"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:387"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:18.979425"]]
104427
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104428
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104430
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104431
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104432
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104433
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104434
+  (0.1ms) SAVEPOINT active_record_1
104435
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:19.965073"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.pdf20150112-29181-1bl11zv: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:19.146844"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:387"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:19.965073"]]
104436
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104437
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1
104438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104439
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104440
+  (0.9ms) rollback transaction
104441
+  (0.1ms) begin transaction
104442
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104443
+  (0.1ms) rollback transaction
104444
+  (0.1ms) begin transaction
104445
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104446
+  (0.1ms) rollback transaction
104447
+  (0.0ms) begin transaction
104448
+  (0.2ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL
104449
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1
104450
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1
104451
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1
104452
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1
104453
+  (0.1ms) SAVEPOINT active_record_1
104454
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:21.474210"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-6phsd2: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:20.618455"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:388"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:21.474210"]]
104455
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1
104456
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1
104457
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104458
+  (0.1ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:388'
104459
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104460
+  (0.6ms) rollback transaction
104461
+  (0.1ms) begin transaction
104462
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104463
+  (0.1ms) rollback transaction
104464
+  (0.1ms) begin transaction
104465
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104466
+  (0.1ms) rollback transaction
104467
+  (0.0ms) begin transaction
104468
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104469
+  (0.1ms) rollback transaction
104470
+  (0.0ms) begin transaction
104471
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104472
+  (0.1ms) rollback transaction
104473
+  (0.0ms) begin transaction
104474
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104475
+  (0.1ms) rollback transaction
104476
+  (0.1ms) begin transaction
104477
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104478
+  (0.1ms) rollback transaction
104479
+  (0.0ms) begin transaction
104480
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104481
+  (0.1ms) rollback transaction
104482
+  (0.0ms) begin transaction
104483
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104484
+  (0.1ms) rollback transaction
104485
+  (0.0ms) begin transaction
104486
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104487
+  (0.1ms) rollback transaction
104488
+  (0.0ms) begin transaction
104489
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104490
+  (0.1ms) rollback transaction
104491
+  (0.0ms) begin transaction
104492
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104493
+  (0.1ms) rollback transaction
104494
+  (0.0ms) begin transaction
104495
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104496
+  (0.1ms) rollback transaction
104497
+  (0.1ms) begin transaction
104498
+  (0.1ms) SAVEPOINT active_record_1
104499
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:22.967442"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image1.tiff20150112-29181-16kqdep: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:22.298918"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:389"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:22.967442"]]
104500
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104501
+  (0.1ms) SAVEPOINT active_record_1
104502
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:23.147233"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image2.tiff20150112-29181-1qqp23u: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:23.002462"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:389"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:23.147233"]]
104503
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104504
+  (0.1ms) SAVEPOINT active_record_1
104505
+ SQL (0.1ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:23.312021"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image3.tiff20150112-29181-1vcdoez: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:23.161115"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:389"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:23.312021"]]
104506
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104507
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104508
+  (1.0ms) rollback transaction
104509
+  (0.1ms) begin transaction
104510
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104511
+  (0.1ms) rollback transaction
104512
+  (0.0ms) begin transaction
104513
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104514
+  (0.1ms) rollback transaction
104515
+  (0.0ms) begin transaction
104516
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104517
+  (0.1ms) rollback transaction
104518
+  (0.0ms) begin transaction
104519
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104520
+  (0.1ms) rollback transaction
104521
+  (0.0ms) begin transaction
104522
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104523
+  (0.1ms) rollback transaction
104524
+  (0.1ms) begin transaction
104525
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104526
+  (0.1ms) rollback transaction
104527
+  (0.0ms) begin transaction
104528
+  (0.1ms) SAVEPOINT active_record_1
104529
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:24.003310"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image1.tiff20150112-29181-m0av3e: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:23.636426"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:390"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:24.003310"]]
104530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104531
+  (0.1ms) SAVEPOINT active_record_1
104532
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:24.164694"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image2.tiff20150112-29181-q5egyq: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:24.016949"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:390"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:24.164694"]]
104533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104534
+  (0.1ms) SAVEPOINT active_record_1
104535
+ SQL (0.1ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:24.328397"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image3.tiff20150112-29181-f11u3e: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:24.179137"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:390"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:24.328397"]]
104536
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104537
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104538
+  (1.7ms) rollback transaction
104539
+  (0.1ms) begin transaction
104540
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104541
+  (0.1ms) rollback transaction
104542
+  (0.0ms) begin transaction
104543
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104544
+  (0.1ms) rollback transaction
104545
+  (0.1ms) begin transaction
104546
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104547
+  (0.1ms) rollback transaction
104548
+  (0.0ms) begin transaction
104549
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104550
+  (0.1ms) rollback transaction
104551
+  (0.0ms) begin transaction
104552
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104553
+  (0.1ms) rollback transaction
104554
+  (0.1ms) begin transaction
104555
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104556
+  (0.1ms) rollback transaction
104557
+  (0.0ms) begin transaction
104558
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104559
+  (0.1ms) rollback transaction
104560
+  (0.0ms) begin transaction
104561
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104562
+  (0.1ms) rollback transaction
104563
+  (0.1ms) begin transaction
104564
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104565
+  (0.1ms) rollback transaction
104566
+  (0.0ms) begin transaction
104567
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104568
+  (0.1ms) rollback transaction
104569
+  (0.0ms) begin transaction
104570
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104571
+  (0.1ms) rollback transaction
104572
+  (0.1ms) begin transaction
104573
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104574
+  (0.1ms) rollback transaction
104575
+  (0.0ms) begin transaction
104576
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104577
+  (0.1ms) rollback transaction
104578
+  (0.0ms) begin transaction
104579
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104580
+  (0.1ms) rollback transaction
104581
+  (0.0ms) begin transaction
104582
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104583
+  (0.1ms) rollback transaction
104584
+  (0.0ms) begin transaction
104585
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104586
+  (0.1ms) rollback transaction
104587
+  (0.0ms) begin transaction
104588
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104589
+  (0.1ms) rollback transaction
104590
+  (0.0ms) begin transaction
104591
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104592
+  (0.1ms) rollback transaction
104593
+  (0.0ms) begin transaction
104594
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104595
+  (0.1ms) rollback transaction
104596
+  (0.0ms) begin transaction
104597
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104598
+  (0.1ms) rollback transaction
104599
+  (0.0ms) begin transaction
104600
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104601
+  (0.1ms) rollback transaction
104602
+  (0.1ms) begin transaction
104603
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104604
+  (0.1ms) rollback transaction
104605
+  (0.0ms) begin transaction
104606
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104607
+  (0.1ms) rollback transaction
104608
+  (0.0ms) begin transaction
104609
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104610
+  (0.1ms) rollback transaction
104611
+  (0.0ms) begin transaction
104612
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104613
+  (0.1ms) rollback transaction
104614
+  (0.1ms) begin transaction
104615
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104616
+  (0.1ms) rollback transaction
104617
+  (0.1ms) begin transaction
104618
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104619
+  (0.1ms) rollback transaction
104620
+  (0.0ms) begin transaction
104621
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104622
+  (0.1ms) rollback transaction
104623
+  (0.0ms) begin transaction
104624
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104625
+  (0.1ms) rollback transaction
104626
+  (0.0ms) begin transaction
104627
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104628
+  (0.1ms) rollback transaction
104629
+  (0.0ms) begin transaction
104630
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104631
+  (0.1ms) rollback transaction
104632
+  (0.0ms) begin transaction
104633
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104634
+  (0.1ms) rollback transaction
104635
+  (0.0ms) begin transaction
104636
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104637
+  (0.1ms) rollback transaction
104638
+  (0.0ms) begin transaction
104639
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104640
+  (0.1ms) rollback transaction
104641
+  (0.0ms) begin transaction
104642
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104643
+  (0.1ms) rollback transaction
104644
+  (0.0ms) begin transaction
104645
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104646
+  (0.1ms) rollback transaction
104647
+  (0.0ms) begin transaction
104648
+  (0.0ms) SAVEPOINT active_record_1
104649
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:26.393360"], ["event_date_time", "2015-01-12 22:39:26.392874"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "DDR 1.8.0"], ["updated_at", "2015-01-12 22:39:26.393360"]]
104650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
104651
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104652
+  (0.7ms) rollback transaction
104653
+  (0.1ms) begin transaction
104654
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104655
+  (0.1ms) rollback transaction
104656
+  (0.0ms) begin transaction
104657
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104658
+  (0.1ms) rollback transaction
104659
+  (0.0ms) begin transaction
104660
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104661
+  (0.1ms) rollback transaction
104662
+  (0.1ms) begin transaction
104663
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104664
+  (0.1ms) rollback transaction
104665
+  (0.0ms) begin transaction
104666
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104667
+  (0.1ms) rollback transaction
104668
+  (0.1ms) begin transaction
104669
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104670
+  (0.1ms) rollback transaction
104671
+  (0.1ms) begin transaction
104672
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104673
+  (0.1ms) rollback transaction
104674
+  (0.0ms) begin transaction
104675
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104676
+  (0.1ms) rollback transaction
104677
+  (0.0ms) begin transaction
104678
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104679
+  (0.1ms) rollback transaction
104680
+  (0.0ms) begin transaction
104681
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104682
+  (0.1ms) rollback transaction
104683
+  (0.0ms) begin transaction
104684
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104685
+  (0.1ms) rollback transaction
104686
+  (0.0ms) begin transaction
104687
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104688
+  (0.1ms) rollback transaction
104689
+  (0.1ms) begin transaction
104690
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104691
+  (0.1ms) rollback transaction
104692
+  (0.0ms) begin transaction
104693
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104694
+  (0.1ms) rollback transaction
104695
+  (0.0ms) begin transaction
104696
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104697
+  (0.1ms) rollback transaction
104698
+  (0.1ms) begin transaction
104699
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104700
+  (0.1ms) rollback transaction
104701
+  (0.0ms) begin transaction
104702
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104703
+  (0.1ms) rollback transaction
104704
+  (0.0ms) begin transaction
104705
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104706
+  (0.1ms) rollback transaction
104707
+  (0.0ms) begin transaction
104708
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104709
+  (0.1ms) rollback transaction
104710
+  (0.1ms) begin transaction
104711
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104712
+  (0.1ms) rollback transaction
104713
+  (0.0ms) begin transaction
104714
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104715
+  (0.1ms) rollback transaction
104716
+  (0.1ms) begin transaction
104717
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104718
+  (0.1ms) rollback transaction
104719
+  (0.0ms) begin transaction
104720
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104721
+  (0.1ms) rollback transaction
104722
+  (0.0ms) begin transaction
104723
+  (0.0ms) SAVEPOINT active_record_1
104724
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:27.698879"], ["event_date_time", "2015-01-12 22:39:27.698359"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "DDR 1.8.0"], ["summary", "Object created in the repository"], ["type", "Ddr::Events::CreationEvent"], ["updated_at", "2015-01-12 22:39:27.698879"]]
104725
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104726
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104727
+  (0.6ms) rollback transaction
104728
+  (0.1ms) begin transaction
104729
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104730
+  (0.1ms) rollback transaction
104731
+  (0.0ms) begin transaction
104732
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104733
+  (0.1ms) rollback transaction
104734
+  (0.0ms) begin transaction
104735
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104736
+  (0.1ms) rollback transaction
104737
+  (0.1ms) begin transaction
104738
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104739
+  (0.1ms) rollback transaction
104740
+  (0.1ms) begin transaction
104741
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104742
+  (0.1ms) rollback transaction
104743
+  (0.0ms) begin transaction
104744
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104745
+  (0.1ms) rollback transaction
104746
+  (0.0ms) begin transaction
104747
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104748
+  (0.1ms) rollback transaction
104749
+  (0.1ms) begin transaction
104750
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104751
+  (0.1ms) rollback transaction
104752
+  (0.0ms) begin transaction
104753
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104754
+  (0.1ms) rollback transaction
104755
+  (0.1ms) begin transaction
104756
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104757
+  (0.1ms) rollback transaction
104758
+  (0.0ms) begin transaction
104759
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104760
+  (0.1ms) rollback transaction
104761
+  (0.0ms) begin transaction
104762
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104763
+  (0.1ms) rollback transaction
104764
+  (0.0ms) begin transaction
104765
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:395' ORDER BY event_date_time DESC LIMIT 1
104766
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:395' ORDER BY event_date_time DESC LIMIT 1
104767
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104768
+  (0.1ms) rollback transaction
104769
+  (0.0ms) begin transaction
104770
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104771
+  (0.1ms) rollback transaction
104772
+  (0.0ms) begin transaction
104773
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104774
+  (0.1ms) rollback transaction
104775
+  (0.0ms) begin transaction
104776
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104777
+  (0.1ms) rollback transaction
104778
+  (0.0ms) begin transaction
104779
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:396' ORDER BY event_date_time DESC LIMIT 1
104780
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:396' ORDER BY event_date_time DESC LIMIT 1
104781
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104782
+  (0.1ms) rollback transaction
104783
+  (0.0ms) begin transaction
104784
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:397' ORDER BY event_date_time DESC LIMIT 1
104785
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:397' ORDER BY event_date_time DESC LIMIT 1
104786
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104787
+  (0.1ms) rollback transaction
104788
+  (0.1ms) begin transaction
104789
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104790
+  (0.1ms) rollback transaction
104791
+  (0.0ms) begin transaction
104792
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104793
+  (0.1ms) rollback transaction
104794
+  (0.0ms) begin transaction
104795
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104796
+  (0.1ms) rollback transaction
104797
+  (0.0ms) begin transaction
104798
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104799
+  (0.1ms) rollback transaction
104800
+  (0.0ms) begin transaction
104801
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:398' ORDER BY event_date_time DESC LIMIT 1
104802
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:398' ORDER BY event_date_time DESC LIMIT 1
104803
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:399' ORDER BY event_date_time DESC LIMIT 1
104804
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:399" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104805
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:399' ORDER BY event_date_time DESC LIMIT 1
104806
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:398" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
104807
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:398' ORDER BY event_date_time DESC LIMIT 1
104808
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:398' ORDER BY event_date_time DESC LIMIT 1
104809
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104810
+  (0.1ms) rollback transaction
104811
+  (0.0ms) begin transaction
104812
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104813
+  (0.1ms) rollback transaction
104814
+  (0.0ms) begin transaction
104815
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104816
+  (0.1ms) rollback transaction
104817
+  (0.0ms) begin transaction
104818
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104819
+  (0.1ms) rollback transaction
104820
+  (0.0ms) begin transaction
104821
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104822
+  (0.1ms) rollback transaction
104823
+  (0.0ms) begin transaction
104824
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104825
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104826
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104827
+  (0.1ms) rollback transaction
104828
+  (0.0ms) begin transaction
104829
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1
104830
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1
104831
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1
104832
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1
104833
+  (0.1ms) SAVEPOINT active_record_1
104834
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:34.525165"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-1nai6to: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:33.778948"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:400"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:34.525165"]]
104835
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1
104836
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1
104837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104838
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104839
+  (0.6ms) rollback transaction
104840
+  (0.1ms) begin transaction
104841
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:401' ORDER BY event_date_time DESC LIMIT 1
104842
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:401' ORDER BY event_date_time DESC LIMIT 1
104843
+  (0.1ms) SAVEPOINT active_record_1
104844
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:35.423920"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.docx20150112-29181-vtpso1: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:34.902199"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:401"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:35.423920"]]
104845
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:401' ORDER BY event_date_time DESC LIMIT 1
104846
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:401' ORDER BY event_date_time DESC LIMIT 1
104847
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104848
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104849
+  (0.6ms) rollback transaction
104850
+  (0.1ms) begin transaction
104851
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1
104852
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1
104853
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1
104854
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1
104855
+  (0.1ms) SAVEPOINT active_record_1
104856
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:37.221972"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.pdf20150112-29181-zz14w7: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:36.122555"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:402"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:37.221972"]]
104857
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1
104858
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1
104859
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104860
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104861
+  (0.5ms) rollback transaction
104862
+  (0.1ms) begin transaction
104863
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104864
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104865
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104866
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104867
+  (0.1ms) SAVEPOINT active_record_1
104868
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:38.699445"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-1uaqhth: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:37.577776"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:403"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:38.699445"]]
104869
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104870
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104871
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104872
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104873
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104874
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104875
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104876
+  (0.1ms) SAVEPOINT active_record_1
104877
+ SQL (0.5ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:39.380319"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image1.tiff20150112-29181-6ku8v6: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:38.878899"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:403"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:39.380319"]]
104878
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104879
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1
104880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104881
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104882
+  (12.0ms) rollback transaction
104883
+  (0.1ms) begin transaction
104884
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104885
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104886
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104887
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104888
+  (0.1ms) SAVEPOINT active_record_1
104889
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:42.140480"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-gpbfgt: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:39.855104"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:404"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:42.140480"]]
104890
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104891
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104892
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104893
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104894
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104895
+  (0.1ms) SAVEPOINT active_record_1
104896
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:42.795121"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.docx20150112-29181-101j9qq: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:42.325454"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:404"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:42.795121"]]
104897
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104898
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1
104899
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104900
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104901
+  (23.1ms) rollback transaction
104902
+  (0.1ms) begin transaction
104903
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104904
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104905
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104906
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104907
+  (0.1ms) SAVEPOINT active_record_1
104908
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:44.792247"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-5k3uqp: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:43.408353"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:405"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:44.792247"]]
104909
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104910
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104911
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104912
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104913
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104914
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104915
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104916
+  (0.1ms) SAVEPOINT active_record_1
104917
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:45.772336"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.pdf20150112-29181-1jdv8mx: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:44.957922"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:405"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:45.772336"]]
104918
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104919
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1
104920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104921
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104922
+  (1.2ms) rollback transaction
104923
+  (0.1ms) begin transaction
104924
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104925
+  (0.1ms) rollback transaction
104926
+  (0.0ms) begin transaction
104927
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104928
+  (0.1ms) rollback transaction
104929
+  (0.1ms) begin transaction
104930
+  (0.2ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL
104931
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1
104932
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1
104933
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1
104934
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1
104935
+  (0.1ms) SAVEPOINT active_record_1
104936
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:47.353857"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-1s28b0p: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:46.292846"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:406"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:47.353857"]]
104937
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1
104938
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1
104939
+  (0.1ms) RELEASE SAVEPOINT active_record_1
104940
+  (0.1ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:406'
104941
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104942
+  (0.5ms) rollback transaction
104943
+  (0.1ms) begin transaction
104944
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104945
+  (0.1ms) rollback transaction
104946
+  (0.0ms) begin transaction
104947
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104948
+  (0.1ms) rollback transaction
104949
+  (0.0ms) begin transaction
104950
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104951
+  (0.1ms) rollback transaction
104952
+  (0.0ms) begin transaction
104953
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104954
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104955
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104956
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
104957
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104958
+  (0.1ms) rollback transaction
104959
+  (0.0ms) begin transaction
104960
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104961
+  (0.1ms) rollback transaction
104962
+  (0.0ms) begin transaction
104963
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104964
+  (0.1ms) rollback transaction
104965
+  (0.1ms) begin transaction
104966
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104967
+  (0.1ms) rollback transaction
104968
+  (0.0ms) begin transaction
104969
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:407' ORDER BY event_date_time DESC LIMIT 1
104970
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:407' ORDER BY event_date_time DESC LIMIT 1
104971
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104972
+  (0.1ms) rollback transaction
104973
+  (0.0ms) begin transaction
104974
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104975
+  (0.1ms) rollback transaction
104976
+  (0.0ms) begin transaction
104977
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104978
+  (0.1ms) rollback transaction
104979
+  (0.0ms) begin transaction
104980
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104981
+  (0.1ms) rollback transaction
104982
+  (0.0ms) begin transaction
104983
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:408' ORDER BY event_date_time DESC LIMIT 1
104984
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:408' ORDER BY event_date_time DESC LIMIT 1
104985
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104986
+  (0.1ms) rollback transaction
104987
+  (0.1ms) begin transaction
104988
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:409' ORDER BY event_date_time DESC LIMIT 1
104989
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:409' ORDER BY event_date_time DESC LIMIT 1
104990
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104991
+  (0.1ms) rollback transaction
104992
+  (0.0ms) begin transaction
104993
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104994
+  (0.2ms) rollback transaction
104995
+  (0.1ms) begin transaction
104996
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
104997
+  (0.1ms) rollback transaction
104998
+  (0.0ms) begin transaction
104999
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105000
+  (0.1ms) rollback transaction
105001
+  (0.1ms) begin transaction
105002
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105003
+  (0.1ms) rollback transaction
105004
+  (0.0ms) begin transaction
105005
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:410' ORDER BY event_date_time DESC LIMIT 1
105006
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:410' ORDER BY event_date_time DESC LIMIT 1
105007
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:411' ORDER BY event_date_time DESC LIMIT 1
105008
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:411" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
105009
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:411' ORDER BY event_date_time DESC LIMIT 1
105010
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:410" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
105011
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:410' ORDER BY event_date_time DESC LIMIT 1
105012
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:410' ORDER BY event_date_time DESC LIMIT 1
105013
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105014
+  (0.1ms) rollback transaction
105015
+  (0.1ms) begin transaction
105016
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105017
+  (0.1ms) rollback transaction
105018
+  (0.0ms) begin transaction
105019
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105020
+  (0.2ms) rollback transaction
105021
+  (0.0ms) begin transaction
105022
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105023
+  (0.1ms) rollback transaction
105024
+  (0.0ms) begin transaction
105025
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105026
+  (0.1ms) rollback transaction
105027
+  (0.0ms) begin transaction
105028
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105029
+  (0.1ms) rollback transaction
105030
+  (0.0ms) begin transaction
105031
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105032
+  (0.1ms) rollback transaction
105033
+  (0.0ms) begin transaction
105034
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
105035
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1
105036
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105037
+  (0.1ms) rollback transaction
105038
+  (0.0ms) begin transaction
105039
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1
105040
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1
105041
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1
105042
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1
105043
+  (0.1ms) SAVEPOINT active_record_1
105044
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:54.100520"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-11u7lkw: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:53.056434"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:412"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:54.100520"]]
105045
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1
105046
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1
105047
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105048
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105049
+  (0.6ms) rollback transaction
105050
+  (0.1ms) begin transaction
105051
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:413' ORDER BY event_date_time DESC LIMIT 1
105052
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:413' ORDER BY event_date_time DESC LIMIT 1
105053
+  (0.1ms) SAVEPOINT active_record_1
105054
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:54.991184"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.docx20150112-29181-1e3a86p: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:54.479153"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:413"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:54.991184"]]
105055
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:413' ORDER BY event_date_time DESC LIMIT 1
105056
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:413' ORDER BY event_date_time DESC LIMIT 1
105057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105058
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105059
+  (0.5ms) rollback transaction
105060
+  (0.1ms) begin transaction
105061
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1
105062
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1
105063
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1
105064
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1
105065
+  (0.1ms) SAVEPOINT active_record_1
105066
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:56.834155"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.pdf20150112-29181-yyhmw4: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:55.392463"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:414"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:56.834155"]]
105067
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1
105068
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1
105069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105070
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105071
+  (0.8ms) rollback transaction
105072
+  (0.1ms) begin transaction
105073
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105074
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105075
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105076
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105077
+  (0.1ms) SAVEPOINT active_record_1
105078
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:57.997020"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-8c63b0: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:57.201151"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:415"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:57.997020"]]
105079
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105080
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105081
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105082
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105083
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105084
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105085
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105086
+  (0.1ms) SAVEPOINT active_record_1
105087
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:39:58.984835"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/image1.tiff20150112-29181-tqzyf3: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:58.169926"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:415"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:39:58.984835"]]
105088
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105089
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1
105090
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105091
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105092
+  (0.3ms) rollback transaction
105093
+  (0.1ms) begin transaction
105094
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105095
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105096
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105097
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105098
+  (0.1ms) SAVEPOINT active_record_1
105099
+ SQL (0.8ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:00.944919"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-1t2b5pt: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:39:59.672026"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:416"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:00.944919"]]
105100
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105101
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105102
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105103
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105104
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105105
+  (0.1ms) SAVEPOINT active_record_1
105106
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:01.676105"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.docx20150112-29181-clt8sd: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:01.384199"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:416"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:01.676105"]]
105107
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105108
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1
105109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105110
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105111
+  (0.8ms) rollback transaction
105112
+  (0.1ms) begin transaction
105113
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105114
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105115
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105116
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105117
+  (0.1ms) SAVEPOINT active_record_1
105118
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:02.864028"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-1e2jgro: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:02.054889"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:417"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:02.864028"]]
105119
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105120
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105122
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105123
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105124
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105125
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105126
+  (0.1ms) SAVEPOINT active_record_1
105127
+ SQL (0.6ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:04.227651"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/sample.pdf20150112-29181-lp9yo: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:03.041881"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:417"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:04.227651"]]
105128
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105129
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1
105130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105131
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105132
+  (1.1ms) rollback transaction
105133
+  (0.1ms) begin transaction
105134
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105135
+  (0.1ms) rollback transaction
105136
+  (0.1ms) begin transaction
105137
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105138
+  (0.1ms) rollback transaction
105139
+  (0.1ms) begin transaction
105140
+  (0.2ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL
105141
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1
105142
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1
105143
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1
105144
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1
105145
+  (0.1ms) SAVEPOINT active_record_1
105146
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:05.607614"], ["detail", "/var/folders/s7/p2473dwx3v1b9dyxbgtym0j14yr8hw/T/library-devil.tiff20150112-29181-rkdhzk: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:04.750457"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:418"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:05.607614"]]
105147
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1
105148
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1
105149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105150
+  (0.1ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:418'
105151
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105152
+  (0.5ms) rollback transaction
105153
+  (0.0ms) begin transaction
105154
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105155
+  (0.1ms) rollback transaction
105156
+  (0.0ms) begin transaction
105157
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105158
+  (0.1ms) rollback transaction
105159
+  (0.0ms) begin transaction
105160
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105161
+  (0.1ms) rollback transaction
105162
+  (0.1ms) begin transaction
105163
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105164
+  (0.1ms) rollback transaction
105165
+  (0.1ms) begin transaction
105166
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:419' ORDER BY event_date_time DESC LIMIT 1
105167
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:419' ORDER BY event_date_time DESC LIMIT 1
105168
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105169
+  (0.1ms) rollback transaction
105170
+  (0.1ms) begin transaction
105171
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105172
+  (0.1ms) rollback transaction
105173
+  (0.0ms) begin transaction
105174
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105175
+  (0.1ms) rollback transaction
105176
+  (0.1ms) begin transaction
105177
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105178
+  (0.1ms) rollback transaction
105179
+  (0.1ms) begin transaction
105180
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105181
+  (0.1ms) rollback transaction
105182
+  (0.1ms) begin transaction
105183
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105184
+  (0.1ms) rollback transaction
105185
+  (0.0ms) begin transaction
105186
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105187
+  (0.1ms) rollback transaction
105188
+  (0.0ms) begin transaction
105189
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105190
+  (0.1ms) rollback transaction
105191
+  (0.0ms) begin transaction
105192
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105193
+  (0.1ms) rollback transaction
105194
+  (0.0ms) begin transaction
105195
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105196
+  (0.1ms) rollback transaction
105197
+  (0.0ms) begin transaction
105198
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105199
+  (0.1ms) rollback transaction
105200
+  (0.0ms) begin transaction
105201
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105202
+  (0.1ms) rollback transaction
105203
+  (0.0ms) begin transaction
105204
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105205
+  (0.1ms) rollback transaction
105206
+  (0.0ms) begin transaction
105207
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105208
+  (0.1ms) rollback transaction
105209
+  (0.0ms) begin transaction
105210
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105211
+  (0.1ms) rollback transaction
105212
+  (0.0ms) begin transaction
105213
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105214
+  (0.1ms) rollback transaction
105215
+  (0.0ms) begin transaction
105216
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105217
+  (0.1ms) rollback transaction
105218
+  (0.1ms) begin transaction
105219
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105220
+  (0.1ms) rollback transaction
105221
+  (0.0ms) begin transaction
105222
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105223
+  (0.1ms) rollback transaction
105224
+  (0.0ms) begin transaction
105225
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105226
+  (0.1ms) rollback transaction
105227
+  (0.1ms) begin transaction
105228
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105229
+  (0.1ms) rollback transaction
105230
+  (0.0ms) begin transaction
105231
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105232
+  (0.1ms) rollback transaction
105233
+  (0.0ms) begin transaction
105234
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105235
+  (0.1ms) rollback transaction
105236
+  (0.1ms) begin transaction
105237
+  (0.1ms) SAVEPOINT active_record_1
105238
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:08.369281"], ["event_date_time", "2015-01-12 22:40:08.368405"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "Fedora Repository 3.7.0"], ["summary", "Validation of datastream checksums"], ["type", "Ddr::Events::FixityCheckEvent"], ["updated_at", "2015-01-12 22:40:08.369281"]]
105239
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105240
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105241
+  (0.7ms) rollback transaction
105242
+  (0.1ms) begin transaction
105243
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105244
+  (0.1ms) rollback transaction
105245
+  (0.1ms) begin transaction
105246
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105247
+  (0.1ms) rollback transaction
105248
+  (0.1ms) begin transaction
105249
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105250
+  (0.1ms) rollback transaction
105251
+  (0.0ms) begin transaction
105252
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105253
+  (0.1ms) rollback transaction
105254
+  (0.0ms) begin transaction
105255
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105256
+  (0.1ms) rollback transaction
105257
+  (0.0ms) begin transaction
105258
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105259
+  (0.1ms) rollback transaction
105260
+  (0.0ms) begin transaction
105261
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105262
+  (0.1ms) rollback transaction
105263
+  (0.1ms) begin transaction
105264
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105265
+  (0.1ms) rollback transaction
105266
+  (0.1ms) begin transaction
105267
+  (0.1ms) SAVEPOINT active_record_1
105268
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:08.900972"], ["event_date_time", "2015-01-12 22:40:08.899988"], ["exception", "null"], ["outcome", "success"], ["software", "Fedora Repository 3.7.0"], ["summary", "Validation of datastream checksums"], ["type", "Ddr::Events::FixityCheckEvent"], ["updated_at", "2015-01-12 22:40:08.900972"]]
105269
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105270
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105271
+  (1.2ms) rollback transaction
105272
+  (0.1ms) begin transaction
105273
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105274
+  (0.1ms) rollback transaction
105275
+  (0.0ms) begin transaction
105276
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105277
+  (0.1ms) rollback transaction
105278
+  (0.0ms) begin transaction
105279
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105280
+  (0.1ms) rollback transaction
105281
+  (0.0ms) begin transaction
105282
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105283
+  (0.1ms) rollback transaction
105284
+  (0.0ms) begin transaction
105285
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105286
+  (0.1ms) rollback transaction
105287
+  (0.0ms) begin transaction
105288
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105289
+  (0.1ms) rollback transaction
105290
+  (0.0ms) begin transaction
105291
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105292
+  (0.1ms) rollback transaction
105293
+  (0.1ms) begin transaction
105294
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105295
+  (0.1ms) rollback transaction
105296
+  (0.0ms) begin transaction
105297
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105298
+  (0.1ms) rollback transaction
105299
+  (0.1ms) begin transaction
105300
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105301
+  (0.1ms) rollback transaction
105302
+  (0.0ms) begin transaction
105303
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105304
+  (0.1ms) rollback transaction
105305
+  (0.0ms) begin transaction
105306
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105307
+  (0.1ms) rollback transaction
105308
+  (0.0ms) begin transaction
105309
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105310
+  (0.1ms) rollback transaction
105311
+  (0.0ms) begin transaction
105312
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105313
+  (0.1ms) rollback transaction
105314
+  (0.0ms) begin transaction
105315
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105316
+  (0.1ms) rollback transaction
105317
+  (0.0ms) begin transaction
105318
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105319
+  (0.1ms) rollback transaction
105320
+  (0.0ms) begin transaction
105321
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105322
+  (0.1ms) rollback transaction
105323
+  (0.1ms) begin transaction
105324
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105325
+  (0.1ms) rollback transaction
105326
+  (0.1ms) begin transaction
105327
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105328
+  (0.1ms) rollback transaction
105329
+  (0.0ms) begin transaction
105330
+  (0.0ms) SAVEPOINT active_record_1
105331
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:10.322592"], ["event_date_time", "2015-01-12 22:40:10.322110"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "DDR 1.8.0"], ["summary", "Object ingested into the repository"], ["type", "Ddr::Events::IngestionEvent"], ["updated_at", "2015-01-12 22:40:10.322592"]]
105332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105333
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105334
+  (0.9ms) rollback transaction
105335
+  (0.1ms) begin transaction
105336
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105337
+  (0.1ms) rollback transaction
105338
+  (0.0ms) begin transaction
105339
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105340
+  (0.1ms) rollback transaction
105341
+  (0.0ms) begin transaction
105342
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105343
+  (0.1ms) rollback transaction
105344
+  (0.0ms) begin transaction
105345
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105346
+  (0.1ms) rollback transaction
105347
+  (0.0ms) begin transaction
105348
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105349
+  (0.1ms) rollback transaction
105350
+  (0.0ms) begin transaction
105351
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105352
+  (0.1ms) rollback transaction
105353
+  (0.0ms) begin transaction
105354
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105355
+  (0.2ms) rollback transaction
105356
+  (0.0ms) begin transaction
105357
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105358
+  (0.1ms) rollback transaction
105359
+  (0.0ms) begin transaction
105360
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105361
+  (0.1ms) rollback transaction
105362
+  (0.0ms) begin transaction
105363
+  (0.0ms) SAVEPOINT active_record_1
105364
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person10') LIMIT 1
105365
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person10@example.com' LIMIT 1
105366
+ Binary data inserted for `string` type on column `encrypted_password`
105367
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:11.033388"], ["email", "person10@example.com"], ["encrypted_password", "$2a$04$Phkco4SUl69vnW8FUa2jSuap3zLrzcNZVjQQ6NHhW2FE7PiCJ2l4e"], ["updated_at", "2015-01-12 22:40:11.033388"], ["username", "person10"]]
105368
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105369
+ Usergroups are ["public", "Collection Creators", "registered"]
105370
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105371
+  (0.6ms) rollback transaction
105372
+  (0.0ms) begin transaction
105373
+  (0.0ms) SAVEPOINT active_record_1
105374
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person11') LIMIT 1
105375
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person11@example.com' LIMIT 1
105376
+ Binary data inserted for `string` type on column `encrypted_password`
105377
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:11.124404"], ["email", "person11@example.com"], ["encrypted_password", "$2a$04$QlaFQFCWC3cKp/Dd1khDg.3WK4YO8YGvYHlG0c0NmsmsLlM2lQyRm"], ["updated_at", "2015-01-12 22:40:11.124404"], ["username", "person11"]]
105378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105379
+ Ddr::Models::Error
105380
+ Usergroups are ["public", "registered"]
105381
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105382
+  (0.6ms) rollback transaction
105383
+  (0.0ms) begin transaction
105384
+  (0.0ms) SAVEPOINT active_record_1
105385
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person12') LIMIT 1
105386
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person12@example.com' LIMIT 1
105387
+ Binary data inserted for `string` type on column `encrypted_password`
105388
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:11.154657"], ["email", "person12@example.com"], ["encrypted_password", "$2a$04$sw0Gyz0xcagRvvF57G.SveFXRyiLMKBIi0OpnYE08brtZzAeLke6."], ["updated_at", "2015-01-12 22:40:11.154657"], ["username", "person12"]]
105389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105390
+ Ddr::Models::Error
105391
+ Usergroups are ["public", "registered"]
105392
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105393
+  (0.6ms) rollback transaction
105394
+  (0.0ms) begin transaction
105395
+  (0.0ms) SAVEPOINT active_record_1
105396
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person13') LIMIT 1
105397
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person13@example.com' LIMIT 1
105398
+ Binary data inserted for `string` type on column `encrypted_password`
105399
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:11.190651"], ["email", "person13@example.com"], ["encrypted_password", "$2a$04$Zu3BBjdxhZw5CZDs.QtPUuGtNCEGy7tBAu9yz2xoYWW5UjD/PKpBa"], ["updated_at", "2015-01-12 22:40:11.190651"], ["username", "person13"]]
105400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105401
+ Ddr::Models::Error
105402
+ Usergroups are ["public", "registered"]
105403
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105404
+  (0.6ms) rollback transaction
105405
+  (0.1ms) begin transaction
105406
+  (0.1ms) SAVEPOINT active_record_1
105407
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person14') LIMIT 1
105408
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person14@example.com' LIMIT 1
105409
+ Binary data inserted for `string` type on column `encrypted_password`
105410
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:11.229897"], ["email", "person14@example.com"], ["encrypted_password", "$2a$04$6v04ivAXWqSBLwg5BFV9/uHtgD0J.8aOdDtv.Gt9lD8BX8HVVVsFW"], ["updated_at", "2015-01-12 22:40:11.229897"], ["username", "person14"]]
105411
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105412
+ Ddr::Models::Error
105413
+ Usergroups are ["public", "registered"]
105414
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105415
+  (0.7ms) rollback transaction
105416
+  (0.1ms) begin transaction
105417
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:425' ORDER BY event_date_time DESC LIMIT 1
105418
+  (0.1ms) SAVEPOINT active_record_1
105419
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person15') LIMIT 1
105420
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person15@example.com' LIMIT 1
105421
+ Binary data inserted for `string` type on column `encrypted_password`
105422
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:11.666668"], ["email", "person15@example.com"], ["encrypted_password", "$2a$04$APa3OEOCcU/mHDeLxf4ZgeprnzUEkKKYqx9ouOFR6gVM4K44znOr6"], ["updated_at", "2015-01-12 22:40:11.666668"], ["username", "person15"]]
105423
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105424
+ Ddr::Models::Error
105425
+ Usergroups are ["public", "registered"]
105426
+ [CANCAN] Checking read permissions for user: person15 with groups: ["public", "registered"]
105427
+ [CANCAN] edit_groups: []
105428
+ [CANCAN] read_groups: []
105429
+ [CANCAN] edit_users: []
105430
+ [CANCAN] read_users: []
105431
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105432
+  (0.6ms) rollback transaction
105433
+  (0.0ms) begin transaction
105434
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:426' ORDER BY event_date_time DESC LIMIT 1
105435
+  (0.1ms) SAVEPOINT active_record_1
105436
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person16') LIMIT 1
105437
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person16@example.com' LIMIT 1
105438
+ Binary data inserted for `string` type on column `encrypted_password`
105439
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:12.709029"], ["email", "person16@example.com"], ["encrypted_password", "$2a$04$Sz9hXVBRgajwasqr7kC9zODCqblwoQ0Czx8biGZJs12zaQ/90q.Ua"], ["updated_at", "2015-01-12 22:40:12.709029"], ["username", "person16"]]
105440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105441
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:426" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
105442
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:426' ORDER BY event_date_time DESC LIMIT 1
105443
+ Ddr::Models::Error
105444
+ Usergroups are ["public", "registered"]
105445
+ [CANCAN] Checking read permissions for user: person16 with groups: ["public", "registered"]
105446
+ [CANCAN] edit_groups: []
105447
+ [CANCAN] read_groups: []
105448
+ [CANCAN] edit_users: []
105449
+ [CANCAN] read_users: ["person16"]
105450
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105451
+  (0.6ms) rollback transaction
105452
+  (0.1ms) begin transaction
105453
+  (0.0ms) SAVEPOINT active_record_1
105454
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person17') LIMIT 1
105455
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person17@example.com' LIMIT 1
105456
+ Binary data inserted for `string` type on column `encrypted_password`
105457
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:13.104895"], ["email", "person17@example.com"], ["encrypted_password", "$2a$04$fvxr80WMgpf.e5NwvDNOaexqT1rKF208GxS./EUdnTd0M9W39/krK"], ["updated_at", "2015-01-12 22:40:13.104895"], ["username", "person17"]]
105458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105459
+ Ddr::Models::Error
105460
+ Usergroups are ["public", "registered"]
105461
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:427' ORDER BY event_date_time DESC LIMIT 1
105462
+ [CANCAN] Checking read permissions for user: person17 with groups: ["public", "registered"]
105463
+ [CANCAN] edit_groups: []
105464
+ [CANCAN] read_groups: []
105465
+ [CANCAN] edit_users: []
105466
+ [CANCAN] read_users: []
105467
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105468
+  (0.5ms) rollback transaction
105469
+  (0.0ms) begin transaction
105470
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105471
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105472
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105473
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105474
+  (0.1ms) SAVEPOINT active_record_1
105475
+ SQL (0.5ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:14.870316"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:13.779453"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:428"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:14.870316"]]
105476
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105477
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105478
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105479
+  (0.1ms) SAVEPOINT active_record_1
105480
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person18') LIMIT 1
105481
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person18@example.com' LIMIT 1
105482
+ Binary data inserted for `string` type on column `encrypted_password`
105483
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:15.020776"], ["email", "person18@example.com"], ["encrypted_password", "$2a$04$gzxZf1Od75RQqJkxFH8WAOJqU9eH5rde7yDqp9VpVg25ez.Sb729S"], ["updated_at", "2015-01-12 22:40:15.020776"], ["username", "person18"]]
105484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105485
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105486
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1
105487
+ Ddr::Models::Error
105488
+ Usergroups are ["public", "registered"]
105489
+ [CANCAN] Checking edit permissions for user: person18 with groups: ["public", "registered"]
105490
+ [CANCAN] edit_groups: []
105491
+ [CANCAN] edit_users: ["person18"]
105492
+ [CANCAN] decision: true
105493
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105494
+  (45.9ms) rollback transaction
105495
+  (0.1ms) begin transaction
105496
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1
105497
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1
105498
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1
105499
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1
105500
+  (0.1ms) SAVEPOINT active_record_1
105501
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:16.514403"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:15.468485"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:429"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:16.514403"]]
105502
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1
105503
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1
105504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105505
+  (0.0ms) SAVEPOINT active_record_1
105506
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person19') LIMIT 1
105507
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person19@example.com' LIMIT 1
105508
+ Binary data inserted for `string` type on column `encrypted_password`
105509
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:16.670891"], ["email", "person19@example.com"], ["encrypted_password", "$2a$04$dcNqEBGfZLLg5Eq1p6iLZOpkNA616JCjGeYh4aITzCG.zmtTHJcFO"], ["updated_at", "2015-01-12 22:40:16.670891"], ["username", "person19"]]
105510
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105511
+ Ddr::Models::Error
105512
+ Usergroups are ["public", "registered"]
105513
+ [CANCAN] Checking edit permissions for user: person19 with groups: ["public", "registered"]
105514
+ [CANCAN] edit_groups: []
105515
+ [CANCAN] edit_users: []
105516
+ [CANCAN] decision: false
105517
+ [CANCAN] Checking read permissions for user: person19 with groups: ["public", "registered"]
105518
+ [CANCAN] edit_groups: []
105519
+ [CANCAN] read_groups: []
105520
+ [CANCAN] edit_users: []
105521
+ [CANCAN] read_users: []
105522
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105523
+  (1.0ms) rollback transaction
105524
+  (0.1ms) begin transaction
105525
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105526
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105527
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105528
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105529
+  (0.1ms) SAVEPOINT active_record_1
105530
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:17.746558"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:16.889282"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:430"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:17.746558"]]
105531
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105532
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105533
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105534
+  (0.0ms) SAVEPOINT active_record_1
105535
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person20') LIMIT 1
105536
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person20@example.com' LIMIT 1
105537
+ Binary data inserted for `string` type on column `encrypted_password`
105538
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:17.903075"], ["email", "person20@example.com"], ["encrypted_password", "$2a$04$yuKRFlvyHerOolXPYZiCJukPEEBvred09kjAQMpRU51JDcecd5ZwG"], ["updated_at", "2015-01-12 22:40:17.903075"], ["username", "person20"]]
105539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105540
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105541
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1
105542
+ Ddr::Models::Error
105543
+ Usergroups are ["public", "registered"]
105544
+ [CANCAN] Checking edit permissions for user: person20 with groups: ["public", "registered"]
105545
+ [CANCAN] edit_groups: []
105546
+ [CANCAN] edit_users: []
105547
+ [CANCAN] decision: false
105548
+ [CANCAN] Checking read permissions for user: person20 with groups: ["public", "registered"]
105549
+ [CANCAN] edit_groups: []
105550
+ [CANCAN] read_groups: []
105551
+ [CANCAN] edit_users: []
105552
+ [CANCAN] read_users: ["person20"]
105553
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105554
+  (1.2ms) rollback transaction
105555
+  (0.0ms) begin transaction
105556
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105557
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105558
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105559
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105560
+  (0.1ms) SAVEPOINT active_record_1
105561
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:19.377413"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:18.549076"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:431"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:19.377413"]]
105562
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105563
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105565
+  (0.1ms) SAVEPOINT active_record_1
105566
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person21') LIMIT 1
105567
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person21@example.com' LIMIT 1
105568
+ Binary data inserted for `string` type on column `encrypted_password`
105569
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:19.578921"], ["email", "person21@example.com"], ["encrypted_password", "$2a$04$qTJ5KK9Mh3F2f5QzElL1beIuqUzUJ8425mWa2e7ocYs17MoIUrw8a"], ["updated_at", "2015-01-12 22:40:19.578921"], ["username", "person21"]]
105570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105571
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105572
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105573
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105574
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1
105575
+ Ddr::Models::Error
105576
+ Usergroups are ["public", "registered"]
105577
+ [CANCAN] Checking edit permissions for user: person21 with groups: ["public", "registered"]
105578
+ [CANCAN] edit_groups: []
105579
+ [CANCAN] edit_users: ["person21"]
105580
+ [CANCAN] decision: true
105581
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105582
+  (1.0ms) rollback transaction
105583
+  (0.1ms) begin transaction
105584
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105585
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105586
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105587
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105588
+  (0.1ms) SAVEPOINT active_record_1
105589
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:21.347827"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:20.466098"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:432"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:21.347827"]]
105590
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105591
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105592
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105593
+  (0.1ms) SAVEPOINT active_record_1
105594
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person22') LIMIT 1
105595
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person22@example.com' LIMIT 1
105596
+ Binary data inserted for `string` type on column `encrypted_password`
105597
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:21.745275"], ["email", "person22@example.com"], ["encrypted_password", "$2a$04$QtA6.weK3nMXRZmoPb/mxeaT1QBm9VeSNMhaoQ6Au3RXzZfWhbCp6"], ["updated_at", "2015-01-12 22:40:21.745275"], ["username", "person22"]]
105598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105599
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105600
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1
105601
+ Ddr::Models::Error
105602
+ Usergroups are ["public", "registered"]
105603
+ [CANCAN] Checking edit permissions for user: person22 with groups: ["public", "registered"]
105604
+ [CANCAN] edit_groups: []
105605
+ [CANCAN] edit_users: []
105606
+ [CANCAN] decision: false
105607
+ [CANCAN] Checking read permissions for user: person22 with groups: ["public", "registered"]
105608
+ [CANCAN] edit_groups: []
105609
+ [CANCAN] read_groups: []
105610
+ [CANCAN] edit_users: []
105611
+ [CANCAN] read_users: []
105612
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105613
+  (1.1ms) rollback transaction
105614
+  (0.1ms) begin transaction
105615
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105616
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105617
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105618
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105619
+  (0.1ms) SAVEPOINT active_record_1
105620
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:22.991224"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:22.133102"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:433"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:22.991224"]]
105621
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105622
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105623
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105624
+  (0.1ms) SAVEPOINT active_record_1
105625
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person23') LIMIT 1
105626
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person23@example.com' LIMIT 1
105627
+ Binary data inserted for `string` type on column `encrypted_password`
105628
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:23.158912"], ["email", "person23@example.com"], ["encrypted_password", "$2a$04$FK11f0KCe4reSi7BfCwDtOb/vb1otzHjz98wtgDRv8z25E0wI3MIm"], ["updated_at", "2015-01-12 22:40:23.158912"], ["username", "person23"]]
105629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105630
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105631
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105632
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105633
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1
105634
+ Ddr::Models::Error
105635
+ Usergroups are ["public", "registered"]
105636
+ [CANCAN] Checking edit permissions for user: person23 with groups: ["public", "registered"]
105637
+ [CANCAN] edit_groups: []
105638
+ [CANCAN] edit_users: []
105639
+ [CANCAN] decision: false
105640
+ [CANCAN] Checking read permissions for user: person23 with groups: ["public", "registered"]
105641
+ [CANCAN] edit_groups: []
105642
+ [CANCAN] read_groups: []
105643
+ [CANCAN] edit_users: []
105644
+ [CANCAN] read_users: ["person23"]
105645
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105646
+  (1.0ms) rollback transaction
105647
+  (0.1ms) begin transaction
105648
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105649
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105650
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105651
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105652
+  (0.1ms) SAVEPOINT active_record_1
105653
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:25.234529"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:24.128365"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:434"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:25.234529"]]
105654
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105655
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105657
+  (0.1ms) SAVEPOINT active_record_1
105658
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person24') LIMIT 1
105659
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person24@example.com' LIMIT 1
105660
+ Binary data inserted for `string` type on column `encrypted_password`
105661
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:25.394870"], ["email", "person24@example.com"], ["encrypted_password", "$2a$04$W7GIkbXy7xDPlOuvl7Zkfu1s1szXQZjalzJOQOoxA5QAvr.QOLZym"], ["updated_at", "2015-01-12 22:40:25.394870"], ["username", "person24"]]
105662
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105663
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105664
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1
105665
+ Ddr::Models::Error
105666
+ Usergroups are ["public", "registered"]
105667
+ [CANCAN] Checking read permissions for user: person24 with groups: ["public", "registered"]
105668
+ [CANCAN] edit_groups: []
105669
+ [CANCAN] read_groups: []
105670
+ [CANCAN] edit_users: []
105671
+ [CANCAN] read_users: ["person24"]
105672
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105673
+  (1.0ms) rollback transaction
105674
+  (0.1ms) begin transaction
105675
+  (0.0ms) SAVEPOINT active_record_1
105676
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person25') LIMIT 1
105677
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person25@example.com' LIMIT 1
105678
+ Binary data inserted for `string` type on column `encrypted_password`
105679
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:25.882229"], ["email", "person25@example.com"], ["encrypted_password", "$2a$04$OVg1/bATcugBRJV/pTklP.0.Tpdjys.e.12NLThI9Vyct4SieZduG"], ["updated_at", "2015-01-12 22:40:25.882229"], ["username", "person25"]]
105680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105681
+ Ddr::Models::Error
105682
+ Usergroups are ["public", "registered"]
105683
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1
105684
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1
105685
+ Ddr::Events::FixityCheckEvent Load (0.4ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1
105686
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1
105687
+  (0.1ms) SAVEPOINT active_record_1
105688
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:26.681945"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:25.886476"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:435"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:26.681945"]]
105689
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1
105690
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1
105691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105692
+ [CANCAN] Checking read permissions for user: person25 with groups: ["public", "registered"]
105693
+ [CANCAN] edit_groups: []
105694
+ [CANCAN] read_groups: []
105695
+ [CANCAN] edit_users: []
105696
+ [CANCAN] read_users: []
105697
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105698
+  (1.0ms) rollback transaction
105699
+  (0.1ms) begin transaction
105700
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105701
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105702
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105703
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105704
+  (0.1ms) SAVEPOINT active_record_1
105705
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:28.197131"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:27.359185"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:436"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:28.197131"]]
105706
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105707
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105709
+  (0.1ms) SAVEPOINT active_record_1
105710
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person26') LIMIT 1
105711
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person26@example.com' LIMIT 1
105712
+ Binary data inserted for `string` type on column `encrypted_password`
105713
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:28.365409"], ["email", "person26@example.com"], ["encrypted_password", "$2a$04$Qap37ncs0HqCkfeKODPIZedntmJkjRFGoVpULSD8bNECQT0YokkOS"], ["updated_at", "2015-01-12 22:40:28.365409"], ["username", "person26"]]
105714
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105715
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105716
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1
105717
+ Ddr::Models::Error
105718
+ Usergroups are ["public", "registered"]
105719
+ [CANCAN] Checking edit permissions for user: person26 with groups: ["public", "registered"]
105720
+ [CANCAN] edit_groups: []
105721
+ [CANCAN] edit_users: []
105722
+ [CANCAN] decision: false
105723
+ [CANCAN] Checking read permissions for user: person26 with groups: ["public", "registered"]
105724
+ [CANCAN] edit_groups: []
105725
+ [CANCAN] read_groups: []
105726
+ [CANCAN] edit_users: []
105727
+ [CANCAN] read_users: ["person26"]
105728
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105729
+  (0.9ms) rollback transaction
105730
+  (0.1ms) begin transaction
105731
+  (0.0ms) SAVEPOINT active_record_1
105732
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person27') LIMIT 1
105733
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person27@example.com' LIMIT 1
105734
+ Binary data inserted for `string` type on column `encrypted_password`
105735
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:29.040795"], ["email", "person27@example.com"], ["encrypted_password", "$2a$04$TTFDH3Xhvduun8MMMYqLkuPPjV0YpNYju3FKajLzNRycRXz5WKzHG"], ["updated_at", "2015-01-12 22:40:29.040795"], ["username", "person27"]]
105736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105737
+ Ddr::Models::Error
105738
+ Usergroups are ["public", "registered"]
105739
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1
105740
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1
105741
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1
105742
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1
105743
+  (0.1ms) SAVEPOINT active_record_1
105744
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:30.705762"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:29.046064"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:437"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:30.705762"]]
105745
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1
105746
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1
105747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105748
+ [CANCAN] Checking edit permissions for user: person27 with groups: ["public", "registered"]
105749
+ [CANCAN] edit_groups: []
105750
+ [CANCAN] edit_users: []
105751
+ [CANCAN] decision: false
105752
+ [CANCAN] Checking read permissions for user: person27 with groups: ["public", "registered"]
105753
+ [CANCAN] edit_groups: []
105754
+ [CANCAN] read_groups: []
105755
+ [CANCAN] edit_users: []
105756
+ [CANCAN] read_users: []
105757
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105758
+  (1.1ms) rollback transaction
105759
+  (0.1ms) begin transaction
105760
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105761
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105762
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105763
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105764
+  (0.1ms) SAVEPOINT active_record_1
105765
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:32.154068"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:31.075384"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:438"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:32.154068"]]
105766
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105767
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105768
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105769
+  (0.0ms) SAVEPOINT active_record_1
105770
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person28') LIMIT 1
105771
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person28@example.com' LIMIT 1
105772
+ Binary data inserted for `string` type on column `encrypted_password`
105773
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:32.318630"], ["email", "person28@example.com"], ["encrypted_password", "$2a$04$Bn6vLnCMrwhE66inUh5Giuycx2WuQ3ulRnv7rVkIuO44owxpBFYpe"], ["updated_at", "2015-01-12 22:40:32.318630"], ["username", "person28"]]
105774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105775
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105776
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105777
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105778
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1
105779
+ Ddr::Models::Error
105780
+ Usergroups are ["public", "registered"]
105781
+ [CANCAN] Checking edit permissions for user: person28 with groups: ["public", "registered"]
105782
+ [CANCAN] edit_groups: []
105783
+ [CANCAN] edit_users: []
105784
+ [CANCAN] decision: false
105785
+ [CANCAN] Checking read permissions for user: person28 with groups: ["public", "registered"]
105786
+ [CANCAN] edit_groups: []
105787
+ [CANCAN] read_groups: []
105788
+ [CANCAN] edit_users: []
105789
+ [CANCAN] read_users: ["person28"]
105790
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105791
+  (1.1ms) rollback transaction
105792
+  (0.1ms) begin transaction
105793
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105794
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105795
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105796
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105797
+  (0.1ms) SAVEPOINT active_record_1
105798
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:33.937860"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:32.894514"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:439"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:33.937860"]]
105799
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105800
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105801
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105802
+  (0.1ms) SAVEPOINT active_record_1
105803
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person29') LIMIT 1
105804
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person29@example.com' LIMIT 1
105805
+ Binary data inserted for `string` type on column `encrypted_password`
105806
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:34.103557"], ["email", "person29@example.com"], ["encrypted_password", "$2a$04$A5shjN1GLiQTMoNP2boxZe91cnhlHZd75Eof9uYQUlvVJjK7tJDn2"], ["updated_at", "2015-01-12 22:40:34.103557"], ["username", "person29"]]
105807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105808
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105809
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1
105810
+ Ddr::Models::Error
105811
+ Usergroups are ["public", "registered"]
105812
+ [CANCAN] Checking edit permissions for user: person29 with groups: ["public", "registered"]
105813
+ [CANCAN] edit_groups: []
105814
+ [CANCAN] edit_users: []
105815
+ [CANCAN] decision: false
105816
+ [CANCAN] Checking read permissions for user: person29 with groups: ["public", "registered"]
105817
+ [CANCAN] edit_groups: []
105818
+ [CANCAN] read_groups: []
105819
+ [CANCAN] edit_users: []
105820
+ [CANCAN] read_users: []
105821
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105822
+  (0.9ms) rollback transaction
105823
+  (0.1ms) begin transaction
105824
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105825
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105826
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105827
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105828
+  (0.2ms) SAVEPOINT active_record_1
105829
+ SQL (0.5ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:35.615905"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:34.500249"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:440"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:35.615905"]]
105830
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105831
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105832
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105833
+  (0.1ms) SAVEPOINT active_record_1
105834
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person30') LIMIT 1
105835
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person30@example.com' LIMIT 1
105836
+ Binary data inserted for `string` type on column `encrypted_password`
105837
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:35.792434"], ["email", "person30@example.com"], ["encrypted_password", "$2a$04$P3333V8p/3HbY6NEq9rlHO8A6o8Mdv47pJxLZES6SN86/44SpGl6S"], ["updated_at", "2015-01-12 22:40:35.792434"], ["username", "person30"]]
105838
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105839
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105840
+ Ddr::Events::VirusCheckEvent Load (0.1ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1
105841
+ Ddr::Models::Error
105842
+ Usergroups are ["public", "registered"]
105843
+ [CANCAN] Checking read permissions for user: person30 with groups: ["public", "registered"]
105844
+ [CANCAN] edit_groups: []
105845
+ [CANCAN] read_groups: []
105846
+ [CANCAN] edit_users: []
105847
+ [CANCAN] read_users: ["person30"]
105848
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105849
+  (0.9ms) rollback transaction
105850
+  (0.1ms) begin transaction
105851
+  (0.0ms) SAVEPOINT active_record_1
105852
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person31') LIMIT 1
105853
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person31@example.com' LIMIT 1
105854
+ Binary data inserted for `string` type on column `encrypted_password`
105855
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:36.204514"], ["email", "person31@example.com"], ["encrypted_password", "$2a$04$WUBo7eRmTsZ9yGkpvR3tjuzHhzvWCnhbX8WCR6ZPgwYemaEGC0jGi"], ["updated_at", "2015-01-12 22:40:36.204514"], ["username", "person31"]]
105856
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105857
+ Ddr::Models::Error
105858
+ Usergroups are ["public", "registered"]
105859
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1
105860
+ Ddr::Events::VirusCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1
105861
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1
105862
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1
105863
+  (0.1ms) SAVEPOINT active_record_1
105864
+ SQL (0.6ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:37.329452"], ["detail", "/Users/dc/github/duke-libraries/ddr-models/spec/fixtures/library-devil.tiff: NOT SCANNED - using :null scanner adapter. (ddr-antivirus 1.3.1)"], ["event_date_time", "2015-01-12 22:40:36.209028"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:441"], ["software", "ddr-antivirus 1.3.1"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:37.329452"]]
105865
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1
105866
+ Ddr::Events::VirusCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1
105867
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105868
+ [CANCAN] Checking read permissions for user: person31 with groups: ["public", "registered"]
105869
+ [CANCAN] edit_groups: []
105870
+ [CANCAN] read_groups: []
105871
+ [CANCAN] edit_users: []
105872
+ [CANCAN] read_users: []
105873
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105874
+  (1.0ms) rollback transaction
105875
+  (0.1ms) begin transaction
105876
+ Ddr::Events::FixityCheckEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:442' ORDER BY event_date_time DESC LIMIT 1
105877
+  (0.1ms) SAVEPOINT active_record_1
105878
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person32') LIMIT 1
105879
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person32@example.com' LIMIT 1
105880
+ Binary data inserted for `string` type on column `encrypted_password`
105881
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:38.085638"], ["email", "person32@example.com"], ["encrypted_password", "$2a$04$I9hV0CUnLLlii3Ig7ffAUOliitOU.tE9xyyTfCXJso8HumPVrqs/m"], ["updated_at", "2015-01-12 22:40:38.085638"], ["username", "person32"]]
105882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105883
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:442" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
105884
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:442' ORDER BY event_date_time DESC LIMIT 1
105885
+ Ddr::Models::Error
105886
+ Usergroups are ["public", "registered"]
105887
+ [CANCAN] Checking read permissions for user: person32 with groups: ["public", "registered"]
105888
+ [CANCAN] edit_groups: []
105889
+ [CANCAN] read_groups: []
105890
+ [CANCAN] edit_users: []
105891
+ [CANCAN] read_users: ["person32"]
105892
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105893
+  (0.7ms) rollback transaction
105894
+  (0.1ms) begin transaction
105895
+  (0.1ms) SAVEPOINT active_record_1
105896
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person33') LIMIT 1
105897
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person33@example.com' LIMIT 1
105898
+ Binary data inserted for `string` type on column `encrypted_password`
105899
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:38.633869"], ["email", "person33@example.com"], ["encrypted_password", "$2a$04$0MRKmtgQ9iWIouVqCc2ufOz75hKgyjj8JfjNGWWiierrX.Mm/vZ5C"], ["updated_at", "2015-01-12 22:40:38.633869"], ["username", "person33"]]
105900
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105901
+ Ddr::Models::Error
105902
+ Usergroups are ["public", "registered"]
105903
+ Ddr::Events::FixityCheckEvent Load (0.2ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:443' ORDER BY event_date_time DESC LIMIT 1
105904
+ [CANCAN] Checking read permissions for user: person33 with groups: ["public", "registered"]
105905
+ [CANCAN] edit_groups: []
105906
+ [CANCAN] read_groups: []
105907
+ [CANCAN] edit_users: []
105908
+ [CANCAN] read_users: []
105909
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105910
+  (0.6ms) rollback transaction
105911
+  (0.1ms) begin transaction
105912
+  (0.1ms) SAVEPOINT active_record_1
105913
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person34') LIMIT 1
105914
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person34@example.com' LIMIT 1
105915
+ Binary data inserted for `string` type on column `encrypted_password`
105916
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.558592"], ["email", "person34@example.com"], ["encrypted_password", "$2a$04$t27fVea8t9mhSFOnK6pzzeNBfb0AAvkgCUAcEgujtDBKkzLvddub6"], ["updated_at", "2015-01-12 22:40:39.558592"], ["username", "person34"]]
105917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105918
+ Ddr::Models::Error
105919
+ Usergroups are ["public", "registered"]
105920
+ [CANCAN] Checking edit permissions for user: person34 with groups: ["public", "registered"]
105921
+ [CANCAN] edit_groups: []
105922
+ [CANCAN] edit_users: []
105923
+ [CANCAN] decision: false
105924
+ [CANCAN] Checking read permissions for user: person34 with groups: ["public", "registered"]
105925
+ [CANCAN] edit_groups: []
105926
+ [CANCAN] read_groups: []
105927
+ [CANCAN] edit_users: []
105928
+ [CANCAN] read_users: []
105929
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105930
+  (13.8ms) rollback transaction
105931
+  (0.1ms) begin transaction
105932
+  (0.1ms) SAVEPOINT active_record_1
105933
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person35') LIMIT 1
105934
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person35@example.com' LIMIT 1
105935
+ Binary data inserted for `string` type on column `encrypted_password`
105936
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.610102"], ["email", "person35@example.com"], ["encrypted_password", "$2a$04$pCFLoPu2acWIGnpqxSSUVObzqhSvSn.O9EDRs1ePb5ZAtTsxnia0K"], ["updated_at", "2015-01-12 22:40:39.610102"], ["username", "person35"]]
105937
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105938
+ Ddr::Models::Error
105939
+ Usergroups are ["public", "registered"]
105940
+ [CANCAN] Checking edit permissions for user: person35 with groups: ["public", "registered"]
105941
+ [CANCAN] edit_groups: []
105942
+ [CANCAN] edit_users: ["person35"]
105943
+ [CANCAN] decision: true
105944
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105945
+  (0.8ms) rollback transaction
105946
+  (0.1ms) begin transaction
105947
+  (0.0ms) SAVEPOINT active_record_1
105948
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person36') LIMIT 1
105949
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person36@example.com' LIMIT 1
105950
+ Binary data inserted for `string` type on column `encrypted_password`
105951
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.641378"], ["email", "person36@example.com"], ["encrypted_password", "$2a$04$4Ocd5LMxTwv8Z2D534Z4lOF0Vc0fM4smKtWTDsr.1UmnDeLg45dIm"], ["updated_at", "2015-01-12 22:40:39.641378"], ["username", "person36"]]
105952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
105953
+ Ddr::Models::Error
105954
+ Usergroups are ["public", "registered"]
105955
+ [CANCAN] Checking edit permissions for user: person36 with groups: ["public", "registered"]
105956
+ [CANCAN] edit_groups: []
105957
+ [CANCAN] edit_users: []
105958
+ [CANCAN] decision: false
105959
+ [CANCAN] Checking read permissions for user: person36 with groups: ["public", "registered"]
105960
+ [CANCAN] edit_groups: []
105961
+ [CANCAN] read_groups: []
105962
+ [CANCAN] edit_users: []
105963
+ [CANCAN] read_users: ["person36"]
105964
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105965
+  (0.9ms) rollback transaction
105966
+  (0.1ms) begin transaction
105967
+  (0.1ms) SAVEPOINT active_record_1
105968
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person37') LIMIT 1
105969
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person37@example.com' LIMIT 1
105970
+ Binary data inserted for `string` type on column `encrypted_password`
105971
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.677927"], ["email", "person37@example.com"], ["encrypted_password", "$2a$04$o8lMgu0O0TQQZZlrukHlP.h7YBWjxOBtPKEWxdI0t4MF3H2HZzgaa"], ["updated_at", "2015-01-12 22:40:39.677927"], ["username", "person37"]]
105972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105973
+ Ddr::Models::Error
105974
+ Usergroups are ["public", "registered"]
105975
+ [CANCAN] Checking edit permissions for user: person37 with groups: ["public", "registered"]
105976
+ [CANCAN] edit_groups: []
105977
+ [CANCAN] edit_users: []
105978
+ [CANCAN] decision: false
105979
+ [CANCAN] Checking read permissions for user: person37 with groups: ["public", "registered"]
105980
+ [CANCAN] edit_groups: []
105981
+ [CANCAN] read_groups: []
105982
+ [CANCAN] edit_users: []
105983
+ [CANCAN] read_users: []
105984
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
105985
+  (0.7ms) rollback transaction
105986
+  (0.1ms) begin transaction
105987
+  (0.0ms) SAVEPOINT active_record_1
105988
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person38') LIMIT 1
105989
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person38@example.com' LIMIT 1
105990
+ Binary data inserted for `string` type on column `encrypted_password`
105991
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.715948"], ["email", "person38@example.com"], ["encrypted_password", "$2a$04$irxVWooyIf2fz5XVGKyIuuOJlQBpw.X0X4.nufSJUZVAcos.B9EGu"], ["updated_at", "2015-01-12 22:40:39.715948"], ["username", "person38"]]
105992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
105993
+ Ddr::Models::Error
105994
+ Usergroups are ["public", "registered"]
105995
+ [CANCAN] Checking edit permissions for user: person38 with groups: ["public", "registered"]
105996
+ [CANCAN] edit_groups: []
105997
+ [CANCAN] edit_users: ["person38"]
105998
+ [CANCAN] decision: true
105999
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106000
+  (1.0ms) rollback transaction
106001
+  (0.1ms) begin transaction
106002
+  (0.1ms) SAVEPOINT active_record_1
106003
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person39') LIMIT 1
106004
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person39@example.com' LIMIT 1
106005
+ Binary data inserted for `string` type on column `encrypted_password`
106006
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.748166"], ["email", "person39@example.com"], ["encrypted_password", "$2a$04$6K2csj5lRwqnUQ/627AxMubepbOjKXBiwRJSn25FQnUD1gUDPNM7W"], ["updated_at", "2015-01-12 22:40:39.748166"], ["username", "person39"]]
106007
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106008
+ Ddr::Models::Error
106009
+ Usergroups are ["public", "registered"]
106010
+ [CANCAN] Checking edit permissions for user: person39 with groups: ["public", "registered"]
106011
+ [CANCAN] edit_groups: []
106012
+ [CANCAN] edit_users: []
106013
+ [CANCAN] decision: false
106014
+ [CANCAN] Checking read permissions for user: person39 with groups: ["public", "registered"]
106015
+ [CANCAN] edit_groups: []
106016
+ [CANCAN] read_groups: []
106017
+ [CANCAN] edit_users: []
106018
+ [CANCAN] read_users: ["person39"]
106019
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106020
+  (6.5ms) rollback transaction
106021
+  (0.1ms) begin transaction
106022
+  (0.0ms) SAVEPOINT active_record_1
106023
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person40') LIMIT 1
106024
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person40@example.com' LIMIT 1
106025
+ Binary data inserted for `string` type on column `encrypted_password`
106026
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.788448"], ["email", "person40@example.com"], ["encrypted_password", "$2a$04$OlxETH2qI3bFJC1II05kF.UXIycpBrWaHL2BUu.KHDGK/yXCtGeJ."], ["updated_at", "2015-01-12 22:40:39.788448"], ["username", "person40"]]
106027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106028
+ Ddr::Models::Error
106029
+ Usergroups are ["public", "registered"]
106030
+ [CANCAN] Checking read permissions for user: person40 with groups: ["public", "registered"]
106031
+ [CANCAN] edit_groups: []
106032
+ [CANCAN] read_groups: []
106033
+ [CANCAN] edit_users: []
106034
+ [CANCAN] read_users: []
106035
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106036
+  (0.8ms) rollback transaction
106037
+  (0.1ms) begin transaction
106038
+  (0.0ms) SAVEPOINT active_record_1
106039
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person41') LIMIT 1
106040
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person41@example.com' LIMIT 1
106041
+ Binary data inserted for `string` type on column `encrypted_password`
106042
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.821617"], ["email", "person41@example.com"], ["encrypted_password", "$2a$04$zqrsr9fw8QF9u.8oinlU8OMQyzvGDffleVMdvN29SJxlritoSIBIG"], ["updated_at", "2015-01-12 22:40:39.821617"], ["username", "person41"]]
106043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106044
+ Ddr::Models::Error
106045
+ Usergroups are ["public", "registered"]
106046
+ [CANCAN] Checking read permissions for user: person41 with groups: ["public", "registered"]
106047
+ [CANCAN] edit_groups: []
106048
+ [CANCAN] read_groups: []
106049
+ [CANCAN] edit_users: ["person41"]
106050
+ [CANCAN] read_users: ["person41"]
106051
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106052
+  (0.9ms) rollback transaction
106053
+  (0.1ms) begin transaction
106054
+  (0.0ms) SAVEPOINT active_record_1
106055
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person42') LIMIT 1
106056
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person42@example.com' LIMIT 1
106057
+ Binary data inserted for `string` type on column `encrypted_password`
106058
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.854029"], ["email", "person42@example.com"], ["encrypted_password", "$2a$04$LlL.RNVh6vft.wPENHIQjuBCLYe9ZDFKmVHa2cCDHhYj2SzDqnbu2"], ["updated_at", "2015-01-12 22:40:39.854029"], ["username", "person42"]]
106059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106060
+ Ddr::Models::Error
106061
+ Usergroups are ["public", "registered"]
106062
+ [CANCAN] Checking read permissions for user: person42 with groups: ["public", "registered"]
106063
+ [CANCAN] edit_groups: []
106064
+ [CANCAN] read_groups: []
106065
+ [CANCAN] edit_users: []
106066
+ [CANCAN] read_users: ["person42"]
106067
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106068
+  (0.7ms) rollback transaction
106069
+  (0.0ms) begin transaction
106070
+  (0.1ms) SAVEPOINT active_record_1
106071
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person43') LIMIT 1
106072
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person43@example.com' LIMIT 1
106073
+ Binary data inserted for `string` type on column `encrypted_password`
106074
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.886007"], ["email", "person43@example.com"], ["encrypted_password", "$2a$04$ASPx131rCkDnKZ.MvN9U/uxfDqCtuXXJ2OIx9DM8urLjsSZaaHbrG"], ["updated_at", "2015-01-12 22:40:39.886007"], ["username", "person43"]]
106075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106076
+ Ddr::Models::Error
106077
+ Usergroups are ["public", "registered"]
106078
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106079
+  (0.9ms) rollback transaction
106080
+  (0.1ms) begin transaction
106081
+  (0.0ms) SAVEPOINT active_record_1
106082
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person44') LIMIT 1
106083
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person44@example.com' LIMIT 1
106084
+ Binary data inserted for `string` type on column `encrypted_password`
106085
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.927972"], ["email", "person44@example.com"], ["encrypted_password", "$2a$04$GrvqAfyOHaZVwGSxA4CpRuVGaMyIt6dCXYKPPbcRUYvwK0n2EQRZG"], ["updated_at", "2015-01-12 22:40:39.927972"], ["username", "person44"]]
106086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106087
+ Ddr::Models::Error
106088
+ Usergroups are ["public", "registered"]
106089
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106090
+  (0.9ms) rollback transaction
106091
+  (0.1ms) begin transaction
106092
+  (0.1ms) SAVEPOINT active_record_1
106093
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person45') LIMIT 1
106094
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person45@example.com' LIMIT 1
106095
+ Binary data inserted for `string` type on column `encrypted_password`
106096
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:39.968666"], ["email", "person45@example.com"], ["encrypted_password", "$2a$04$WtYEws1wwdLU7VyLo/tC2e/wRSG.6u82hoI27KR.si3zr8ueJ7Kty"], ["updated_at", "2015-01-12 22:40:39.968666"], ["username", "person45"]]
106097
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106098
+ Ddr::Models::Error
106099
+ Usergroups are ["public", "registered"]
106100
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106101
+  (0.9ms) rollback transaction
106102
+  (0.1ms) begin transaction
106103
+  (0.0ms) SAVEPOINT active_record_1
106104
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person46') LIMIT 1
106105
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person46@example.com' LIMIT 1
106106
+ Binary data inserted for `string` type on column `encrypted_password`
106107
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:40.005750"], ["email", "person46@example.com"], ["encrypted_password", "$2a$04$pUlLJVBjJfcHeDgEb7pGtuyEzpnOMv3x9E.rKwCDOMAxFizqImm1u"], ["updated_at", "2015-01-12 22:40:40.005750"], ["username", "person46"]]
106108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106109
+ Ddr::Models::Error
106110
+ Usergroups are ["public", "registered"]
106111
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106112
+  (0.7ms) rollback transaction
106113
+  (0.1ms) begin transaction
106114
+  (0.0ms) SAVEPOINT active_record_1
106115
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person47') LIMIT 1
106116
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person47@example.com' LIMIT 1
106117
+ Binary data inserted for `string` type on column `encrypted_password`
106118
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:40.042567"], ["email", "person47@example.com"], ["encrypted_password", "$2a$04$9VV3qzcTSD8oSoBdAmqSfeWl3JPjKtYjPppbRkXd0a3tit2kxBPZ."], ["updated_at", "2015-01-12 22:40:40.042567"], ["username", "person47"]]
106119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106120
+ Ddr::Models::Error
106121
+ Usergroups are ["public", "registered"]
106122
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106123
+  (0.7ms) rollback transaction
106124
+  (0.1ms) begin transaction
106125
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106126
+  (0.1ms) rollback transaction
106127
+  (0.0ms) begin transaction
106128
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106129
+  (0.1ms) rollback transaction
106130
+  (0.0ms) begin transaction
106131
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106132
+  (0.1ms) rollback transaction
106133
+  (0.0ms) begin transaction
106134
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106135
+  (0.1ms) rollback transaction
106136
+  (0.0ms) begin transaction
106137
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106138
+  (0.1ms) rollback transaction
106139
+  (0.0ms) begin transaction
106140
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106141
+  (0.1ms) rollback transaction
106142
+  (0.0ms) begin transaction
106143
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106144
+  (0.1ms) rollback transaction
106145
+  (0.1ms) begin transaction
106146
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106147
+  (0.1ms) rollback transaction
106148
+  (0.0ms) begin transaction
106149
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106150
+  (0.1ms) rollback transaction
106151
+  (0.0ms) begin transaction
106152
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106153
+  (0.1ms) rollback transaction
106154
+  (0.0ms) begin transaction
106155
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106156
+  (0.1ms) rollback transaction
106157
+  (0.0ms) begin transaction
106158
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106159
+  (0.1ms) rollback transaction
106160
+  (0.1ms) begin transaction
106161
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106162
+  (0.1ms) rollback transaction
106163
+  (0.0ms) begin transaction
106164
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106165
+  (0.1ms) rollback transaction
106166
+  (0.0ms) begin transaction
106167
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106168
+  (0.1ms) rollback transaction
106169
+  (0.0ms) begin transaction
106170
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106171
+  (0.1ms) rollback transaction
106172
+  (0.1ms) begin transaction
106173
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106174
+  (0.1ms) rollback transaction
106175
+  (0.0ms) begin transaction
106176
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106177
+  (0.1ms) rollback transaction
106178
+  (0.0ms) begin transaction
106179
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106180
+  (0.1ms) rollback transaction
106181
+  (0.0ms) begin transaction
106182
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106183
+  (0.1ms) rollback transaction
106184
+  (0.0ms) begin transaction
106185
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106186
+  (0.2ms) rollback transaction
106187
+  (0.1ms) begin transaction
106188
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106189
+  (0.1ms) rollback transaction
106190
+  (0.0ms) begin transaction
106191
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106192
+  (0.1ms) rollback transaction
106193
+  (0.1ms) begin transaction
106194
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106195
+  (0.1ms) rollback transaction
106196
+  (0.0ms) begin transaction
106197
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106198
+  (0.1ms) rollback transaction
106199
+  (0.1ms) begin transaction
106200
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106201
+  (0.1ms) rollback transaction
106202
+  (0.0ms) begin transaction
106203
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106204
+  (0.1ms) rollback transaction
106205
+  (0.1ms) begin transaction
106206
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106207
+  (0.1ms) rollback transaction
106208
+  (0.0ms) begin transaction
106209
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106210
+  (0.1ms) rollback transaction
106211
+  (0.0ms) begin transaction
106212
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106213
+  (0.1ms) rollback transaction
106214
+  (0.0ms) begin transaction
106215
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106216
+  (0.1ms) rollback transaction
106217
+  (0.0ms) begin transaction
106218
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106219
+  (0.1ms) rollback transaction
106220
+  (0.0ms) begin transaction
106221
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106222
+  (0.1ms) rollback transaction
106223
+  (0.0ms) begin transaction
106224
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106225
+  (0.1ms) rollback transaction
106226
+  (0.1ms) begin transaction
106227
+  (0.0ms) SAVEPOINT active_record_1
106228
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:41.372818"], ["event_date_time", "2015-01-12 22:40:41.372298"], ["exception", "\"Gah!\""], ["outcome", "failure"], ["software", "DDR 1.8.0"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:41.372818"]]
106229
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106230
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106231
+  (0.7ms) rollback transaction
106232
+  (0.1ms) begin transaction
106233
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106234
+  (0.1ms) rollback transaction
106235
+  (0.0ms) begin transaction
106236
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106237
+  (0.1ms) rollback transaction
106238
+  (0.1ms) begin transaction
106239
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106240
+  (0.1ms) rollback transaction
106241
+  (0.0ms) begin transaction
106242
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106243
+  (0.1ms) rollback transaction
106244
+  (0.1ms) begin transaction
106245
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106246
+  (0.1ms) rollback transaction
106247
+  (0.0ms) begin transaction
106248
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106249
+  (0.1ms) rollback transaction
106250
+  (0.1ms) begin transaction
106251
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106252
+  (0.2ms) rollback transaction
106253
+  (0.1ms) begin transaction
106254
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106255
+  (0.1ms) rollback transaction
106256
+  (0.0ms) begin transaction
106257
+  (0.1ms) SAVEPOINT active_record_1
106258
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:42.700836"], ["event_date_time", "2015-01-12 22:40:42.699905"], ["exception", "null"], ["outcome", "success"], ["software", "DDR 1.8.0"], ["summary", "Content file scanned for viruses"], ["type", "Ddr::Events::VirusCheckEvent"], ["updated_at", "2015-01-12 22:40:42.700836"]]
106259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106260
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106261
+  (0.7ms) rollback transaction
106262
+  (0.1ms) begin transaction
106263
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106264
+  (0.1ms) rollback transaction
106265
+  (0.1ms) begin transaction
106266
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106267
+  (0.1ms) rollback transaction
106268
+  (0.1ms) begin transaction
106269
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106270
+  (0.1ms) rollback transaction
106271
+  (0.0ms) begin transaction
106272
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106273
+  (0.1ms) rollback transaction
106274
+  (0.1ms) begin transaction
106275
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106276
+  (0.1ms) rollback transaction
106277
+  (0.0ms) begin transaction
106278
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106279
+  (0.1ms) rollback transaction
106280
+  (0.0ms) begin transaction
106281
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106282
+  (0.1ms) rollback transaction
106283
+  (0.0ms) begin transaction
106284
+  (0.0ms) SAVEPOINT active_record_1
106285
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person49') LIMIT 1
106286
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person49@example.com' LIMIT 1
106287
+ Binary data inserted for `string` type on column `encrypted_password`
106288
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:42.905964"], ["email", "person49@example.com"], ["encrypted_password", "$2a$04$9LEtEFE7iWGPiaNatJaNjOPieCpAAwYv0ZBDRnymrd0/gAeiGCCbq"], ["updated_at", "2015-01-12 22:40:42.905964"], ["username", "person49"]]
106289
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106290
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106291
+  (0.6ms) rollback transaction
106292
+  (0.0ms) begin transaction
106293
+  (0.0ms) SAVEPOINT active_record_1
106294
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person50') LIMIT 1
106295
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person50@example.com' LIMIT 1
106296
+ Binary data inserted for `string` type on column `encrypted_password`
106297
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:42.935218"], ["email", "person50@example.com"], ["encrypted_password", "$2a$04$7C33DeRyk72lM1Hv6W1yOuFYDyTPxIfCGGy/VXkud0PymdZxNVkBe"], ["updated_at", "2015-01-12 22:40:42.935218"], ["username", "person50"]]
106298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106299
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106300
+  (0.5ms) rollback transaction
106301
+  (0.1ms) begin transaction
106302
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106303
+  (0.1ms) rollback transaction
106304
+  (0.1ms) begin transaction
106305
+  (0.1ms) SAVEPOINT active_record_1
106306
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person51') LIMIT 1
106307
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person51@example.com' LIMIT 1
106308
+ Binary data inserted for `string` type on column `encrypted_password`
106309
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:42.989963"], ["email", "person51@example.com"], ["encrypted_password", "$2a$04$QTDhjdMhy8SCMMEu50irxOh6gUDUKoe7yVacJG5bsa/tCaejvnoGW"], ["updated_at", "2015-01-12 22:40:42.989963"], ["username", "person51"]]
106310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106311
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106312
+  (0.6ms) rollback transaction
106313
+  (0.1ms) begin transaction
106314
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106315
+  (0.1ms) rollback transaction
106316
+  (0.0ms) begin transaction
106317
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106318
+  (0.1ms) rollback transaction
106319
+  (0.1ms) begin transaction
106320
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106321
+  (0.1ms) rollback transaction
106322
+  (0.0ms) begin transaction
106323
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106324
+  (0.1ms) rollback transaction
106325
+  (0.1ms) begin transaction
106326
+  (0.2ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::UpdateEvent') AND "events"."pid" IS NULL
106327
+  (0.1ms) SAVEPOINT active_record_1
106328
+ SQL (0.3ms) INSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:43.725992"], ["detail", "Permanent ID: ark:/99999/fk4zzz\nPermanent URL: http://id.library.duke.edu/ark:/99999/fk4zzz\nEZID Metadata:\n_target: http://example.com\n"], ["event_date_time", "2015-01-12 22:40:43.665439"], ["exception", "null"], ["outcome", "success"], ["pid", "changeme:446"], ["software", "ezid-client 0.9.0 (EZID API Version 2)"], ["summary", "Permanent ID assigned"], ["type", "Ddr::Events::UpdateEvent"], ["updated_at", "2015-01-12 22:40:43.725992"]]
106329
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106330
+  (0.1ms) SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::UpdateEvent') AND "events"."pid" = 'changeme:446'
106331
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106332
+  (0.6ms) rollback transaction
106333
+  (0.1ms) begin transaction
106334
+  (0.1ms) SAVEPOINT active_record_1
106335
+ SQL (0.4ms) INSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", "2015-01-12 22:40:44.250537"], ["event_date_time", "2015-01-12 22:40:44.190364"], ["exception", "[\"Ezid::Error\",\"Ezid::Error\"]"], ["outcome", "failure"], ["pid", "changeme:447"], ["software", "ezid-client 0.9.0 (EZID API Version 2)"], ["summary", "Permanent ID assigned"], ["type", "Ddr::Events::UpdateEvent"], ["updated_at", "2015-01-12 22:40:44.250537"]]
106336
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106337
+ Ddr::Events::UpdateEvent Load (0.3ms) SELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::UpdateEvent') AND "events"."pid" = 'changeme:447' ORDER BY event_date_time DESC LIMIT 1
106338
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106339
+  (0.6ms) rollback transaction
106340
+  (0.1ms) begin transaction
106341
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106342
+  (0.1ms) rollback transaction
106343
+  (0.1ms) begin transaction
106344
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106345
+  (0.1ms) rollback transaction
106346
+  (0.1ms) begin transaction
106347
+ Cowardly refusing to save a datastream with empty content: #<Ddr::Datastreams::AdminMetadataDatastream @pid="changeme:450" @dsid="adminMetadata" @controlGroup="M" changed="true" @mimeType="application/n-triples" >
106348
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106349
+  (0.1ms) rollback transaction
106350
+  (0.1ms) begin transaction
106351
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106352
+  (0.1ms) rollback transaction
106353
+  (0.1ms) begin transaction
106354
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106355
+  (0.1ms) rollback transaction
106356
+  (0.0ms) begin transaction
106357
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106358
+  (0.1ms) rollback transaction
106359
+  (0.0ms) begin transaction
106360
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106361
+  (0.1ms) rollback transaction
106362
+  (0.0ms) begin transaction
106363
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106364
+  (0.1ms) rollback transaction
106365
+  (0.0ms) begin transaction
106366
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106367
+  (0.1ms) rollback transaction
106368
+  (0.1ms) begin transaction
106369
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106370
+  (0.1ms) rollback transaction
106371
+  (0.1ms) begin transaction
106372
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106373
+  (0.1ms) rollback transaction
106374
+  (0.0ms) begin transaction
106375
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106376
+  (0.1ms) rollback transaction
106377
+  (0.0ms) begin transaction
106378
+ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
106379
+  (0.1ms) rollback transaction