ddr-models 1.8.0 → 1.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ddr/datastreams/admin_metadata_datastream.rb +6 -1
- data/lib/ddr/index.rb~ +8 -0
- data/lib/ddr/index_fields.rb +0 -1
- data/lib/ddr/managers/index_manager.rb~ +7 -0
- data/lib/ddr/models/#index.rb# +25 -0
- data/lib/ddr/models/#indexing.rb# +108 -0
- data/lib/ddr/models/indexing.rb +0 -3
- data/lib/ddr/models/version.rb +1 -1
- data/spec/dummy/log/development.log +171 -0
- data/spec/dummy/log/test.log +3302 -0
- data/spec/models/ability_spec.rb +52 -5
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: caa9019a86e6029ffd6e988bd26755b8f098302f
|
|
4
|
+
data.tar.gz: 542ea1b0fd5f659b898717c561c4ef79013b6f59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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|
|
data/lib/ddr/index.rb~
ADDED
data/lib/ddr/index_fields.rb
CHANGED
|
@@ -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,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
|
data/lib/ddr/models/indexing.rb
CHANGED
|
@@ -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
|
data/lib/ddr/models/version.rb
CHANGED
|
@@ -8553,3 +8553,174 @@ Migrating to DropWorkflowStates (20150110023410)
|
|
|
8553
8553
|
[1m[36m (1.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141107124012')[0m
|
|
8554
8554
|
[1m[35m (2.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20141216040225')
|
|
8555
8555
|
[1m[36m (1.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141218020612')[0m
|
|
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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (16.5ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1[0m
|
|
8565
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.4ms)[0m 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
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
8577
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
8578
|
+
[1m[36m (0.2ms)[0m [1m 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
|
+
[0m
|
|
8586
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8602
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8618
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8634
|
+
[1m[35m (1.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
8636
|
+
[1m[35m (1.3ms)[0m CREATE INDEX "index_events_on_event_date_time" ON "events" ("event_date_time")
|
|
8637
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8645
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "index_events_on_outcome" ON "events" ("outcome")
|
|
8646
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8654
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.4ms)[0m [1mCREATE INDEX "index_events_on_pid" ON "events" ("pid")[0m
|
|
8663
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8679
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.4ms)[0m [1mCREATE INDEX "index_events_on_type" ON "events" ("type")[0m
|
|
8688
|
+
[1m[35m (1.7ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mCREATE INDEX "index_users_on_email" ON "users" ("email")[0m
|
|
8690
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m
|
|
8699
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1m 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
|
+
[0m
|
|
8715
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_users_on_username" ON "users" ("username")
|
|
8716
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
8717
|
+
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
8718
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
8719
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150110023410')
|
|
8720
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141021233359')[0m
|
|
8721
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20141021234156')
|
|
8722
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141103192146')[0m
|
|
8723
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20141104181418')
|
|
8724
|
+
[1m[36m (1.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141107124012')[0m
|
|
8725
|
+
[1m[35m (1.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20141216040225')
|
|
8726
|
+
[1m[36m (1.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20141218020612')[0m
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -103075,3 +103075,3305 @@ Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index
|
|
|
103075
103075
|
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:340' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (2.9ms)[0m [1mDELETE FROM "events";[0m
|
|
103080
|
+
[1m[35m (0.2ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
103081
|
+
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'events';[0m
|
|
103082
|
+
[1m[35m (1.7ms)[0m DELETE FROM "users";
|
|
103083
|
+
[1m[36m (0.2ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
103084
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103091
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103092
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person1') LIMIT 1[0m
|
|
103093
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
103110
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103111
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103112
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person2') LIMIT 1
|
|
103113
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
|
103114
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103115
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
103125
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103126
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103127
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person3') LIMIT 1[0m
|
|
103128
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (6.6ms)[0m [1mrollback transaction[0m
|
|
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
|
+
[1m[36m (6.4ms)[0m [1mDELETE FROM "events";[0m
|
|
103147
|
+
[1m[35m (0.3ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
103148
|
+
[1m[36m (0.2ms)[0m [1mDELETE FROM sqlite_sequence where name = 'events';[0m
|
|
103149
|
+
[1m[35m (2.3ms)[0m DELETE FROM "users";
|
|
103150
|
+
[1m[36m (0.3ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
103151
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103158
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103159
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person1') LIMIT 1[0m
|
|
103160
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (12.2ms)[0m [1mrollback transaction[0m
|
|
103168
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103169
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103170
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person2') LIMIT 1
|
|
103171
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1[0m
|
|
103172
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103173
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
103179
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103180
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103181
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person3') LIMIT 1[0m
|
|
103182
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
103190
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103192
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person4') LIMIT 1
|
|
103193
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1[0m
|
|
103194
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103195
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
103201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103202
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103203
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person5') LIMIT 1[0m
|
|
103204
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
103212
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103213
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103214
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person6') LIMIT 1
|
|
103215
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1[0m
|
|
103216
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103217
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
103223
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103224
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103225
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person7') LIMIT 1[0m
|
|
103226
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
103234
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103235
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103236
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person8') LIMIT 1
|
|
103237
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1[0m
|
|
103238
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103239
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
103245
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103246
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103247
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person9') LIMIT 1[0m
|
|
103248
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
103256
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103257
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103258
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person10') LIMIT 1
|
|
103259
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person10@example.com' LIMIT 1[0m
|
|
103260
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103261
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
103266
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103267
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103268
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person11') LIMIT 1[0m
|
|
103269
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103273
|
+
Ddr::Models::Error
|
|
103274
|
+
Usergroups are ["public", "registered"]
|
|
103275
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:341' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
103283
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103284
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103286
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person12') LIMIT 1
|
|
103287
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person12@example.com' LIMIT 1[0m
|
|
103288
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103289
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
103302
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103303
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:343' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103304
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103305
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person13') LIMIT 1[0m
|
|
103306
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
103319
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
103320
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103321
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person14') LIMIT 1
|
|
103322
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person14@example.com' LIMIT 1[0m
|
|
103323
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103324
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103326
|
+
Ddr::Models::Error
|
|
103327
|
+
Usergroups are ["public", "registered"]
|
|
103328
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103330
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103332
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103333
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:344' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103336
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.5ms)[0m [1mrollback transaction[0m
|
|
103344
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103345
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.6ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103346
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103348
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103350
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103352
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103354
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103355
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person15') LIMIT 1[0m
|
|
103356
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103360
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:345' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103361
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
|
103371
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103372
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103373
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103375
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103377
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103379
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103381
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103382
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person16') LIMIT 1[0m
|
|
103383
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103387
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103388
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:346' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103390
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
|
103399
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103400
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103401
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103403
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103405
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103407
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (7.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103409
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103410
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person17') LIMIT 1[0m
|
|
103411
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103415
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103416
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:347' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103418
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
|
103432
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103433
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103434
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103436
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103438
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103440
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103442
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103443
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person18') LIMIT 1[0m
|
|
103444
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103448
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:348' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103449
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
|
103463
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
103464
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103465
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103467
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103469
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103471
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103473
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103474
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person19') LIMIT 1[0m
|
|
103475
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103479
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:349' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103480
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (1.4ms)[0m [1mrollback transaction[0m
|
|
103489
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103490
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103491
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103493
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103495
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103497
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103499
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103500
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person20') LIMIT 1[0m
|
|
103501
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103505
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:350' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103506
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
|
103520
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103521
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103522
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103524
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103526
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:351' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103528
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103530
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103531
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person21') LIMIT 1[0m
|
|
103532
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
|
103549
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103550
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103551
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person22') LIMIT 1
|
|
103552
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person22@example.com' LIMIT 1[0m
|
|
103553
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103554
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
103565
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103566
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103567
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person23') LIMIT 1[0m
|
|
103568
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
103581
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103582
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103583
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person24') LIMIT 1
|
|
103584
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person24@example.com' LIMIT 1[0m
|
|
103585
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103586
|
+
[1m[35mSQL (0.2ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
103597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103598
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103599
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person25') LIMIT 1[0m
|
|
103600
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
103617
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103618
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103619
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person26') LIMIT 1
|
|
103620
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person26@example.com' LIMIT 1[0m
|
|
103621
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103622
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
103637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103638
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103639
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person27') LIMIT 1[0m
|
|
103640
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
103652
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103653
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103654
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person28') LIMIT 1
|
|
103655
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person28@example.com' LIMIT 1[0m
|
|
103656
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103657
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
103672
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103673
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103674
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person29') LIMIT 1[0m
|
|
103675
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
103692
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103693
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103694
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person30') LIMIT 1
|
|
103695
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person30@example.com' LIMIT 1[0m
|
|
103696
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103697
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
103707
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103708
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103709
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person31') LIMIT 1[0m
|
|
103710
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103714
|
+
Ddr::Models::Error
|
|
103715
|
+
Usergroups are ["public", "registered"]
|
|
103716
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:352' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
103724
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103725
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103727
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person32') LIMIT 1
|
|
103728
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person32@example.com' LIMIT 1[0m
|
|
103729
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103730
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
103743
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
103744
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103745
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person33') LIMIT 1
|
|
103746
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person33@example.com' LIMIT 1[0m
|
|
103747
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103748
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103750
|
+
Ddr::Models::Error
|
|
103751
|
+
Usergroups are ["public", "registered"]
|
|
103752
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103754
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103756
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103757
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:354' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103760
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
|
103768
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
103769
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.4ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103770
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103772
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103774
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103776
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103778
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103779
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person34') LIMIT 1[0m
|
|
103780
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103784
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:355' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103785
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (1.3ms)[0m [1mrollback transaction[0m
|
|
103795
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103796
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.4ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103797
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103799
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103801
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103803
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103805
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103806
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person35') LIMIT 1[0m
|
|
103807
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103811
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:356' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103812
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
|
103826
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103827
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103828
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103830
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103832
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103834
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103836
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103837
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person36') LIMIT 1[0m
|
|
103838
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103842
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103843
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:357' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103845
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
|
103859
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103861
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person37') LIMIT 1
|
|
103862
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person37@example.com' LIMIT 1[0m
|
|
103863
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
103864
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103866
|
+
Ddr::Models::Error
|
|
103867
|
+
Usergroups are ["public", "registered"]
|
|
103868
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103870
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103872
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103873
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:358' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103876
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
103888
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
103889
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103890
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103892
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
103894
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103896
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
103898
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
103899
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person38') LIMIT 1[0m
|
|
103900
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
103904
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:359' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
103905
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
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
|
+
[1m[36m (2.6ms)[0m [1mDELETE FROM "events";[0m
|
|
103921
|
+
[1m[35m (0.1ms)[0m SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
|
|
103922
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM sqlite_sequence where name = 'events';[0m
|
|
103923
|
+
[1m[35m (2.0ms)[0m DELETE FROM "users";
|
|
103924
|
+
[1m[36m (0.1ms)[0m [1mSELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';[0m
|
|
103925
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103932
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103933
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103934
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103935
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103936
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103937
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103938
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103939
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103940
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103941
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103942
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103944
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103945
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103947
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103948
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103949
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103950
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103951
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103952
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103953
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103954
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103955
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103956
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103957
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103958
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103959
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103960
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103961
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103962
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103963
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103964
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103965
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103966
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103967
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103968
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103969
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103970
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
103971
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103972
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103973
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103974
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103975
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103976
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103977
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
103978
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
103979
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
103980
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
103981
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
103985
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
103988
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
103991
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
103994
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
103997
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104000
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104003
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104006
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104007
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.4ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:362' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104012
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104015
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104018
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104021
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104022
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:363' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104023
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104024
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104025
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104026
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104027
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104029
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104030
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104031
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104032
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104033
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104034
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104035
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:364' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104038
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104039
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104040
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104041
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:365' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104044
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104045
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104046
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104047
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104048
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104049
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104050
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104051
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104052
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104053
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104054
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104055
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104056
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104057
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104058
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104059
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:366' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104062
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:367' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104069
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104072
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104075
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (3.4ms)[0m [1mrollback transaction[0m
|
|
104078
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104081
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104084
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104087
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104090
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104093
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104096
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104097
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.4ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:368' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104098
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104099
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104100
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104101
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104102
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104103
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104104
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104107
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104108
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104109
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104110
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104113
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104114
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:370' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104115
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104116
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104117
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104118
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104119
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104120
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104121
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104122
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104124
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104125
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104127
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104128
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104130
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:372' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:371' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104136
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104137
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104139
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104140
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104142
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104143
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104144
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104145
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:373' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104149
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104150
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104151
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104152
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:374' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104156
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104158
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104159
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104160
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104162
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104163
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104164
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104165
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104166
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104168
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104169
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104170
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104171
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104172
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104173
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104174
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104175
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104181
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104182
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104184
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104185
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104187
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104188
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104189
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104190
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104191
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104192
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104193
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104196
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104197
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104199
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104200
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104202
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104203
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104204
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104205
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104206
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104207
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104208
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104209
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104211
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104212
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104213
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104214
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104215
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104216
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104217
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104218
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104219
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104220
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104221
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104223
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104224
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104226
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104227
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104228
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104229
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104230
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104231
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104232
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104233
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104234
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104235
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104236
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104237
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104238
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104239
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104240
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104241
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104242
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (33.3ms)[0m [1mrollback transaction[0m
|
|
104246
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104249
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104252
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104255
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104258
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104261
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104264
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104267
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104270
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104273
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104276
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104279
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104282
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104283
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:377' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104284
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104287
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104290
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104293
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104296
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104297
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:378' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104298
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104301
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104302
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:379' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104303
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104306
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104309
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104312
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104315
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104318
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104319
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:380' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104320
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:381' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:380' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104326
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104329
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104332
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104335
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104338
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104341
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104342
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104343
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104346
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104347
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104348
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104350
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104352
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:382' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104354
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104356
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104357
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
104358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104359
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:383' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104361
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104362
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:383' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104365
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
104368
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104369
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104370
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104372
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104374
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:384' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104376
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104378
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104379
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
104380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104381
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104383
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104385
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104386
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104389
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104390
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104391
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104393
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104395
|
+
[1m[35mSQL (1.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:385' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104397
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104399
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104400
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
104401
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104402
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104404
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104406
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104407
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104410
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104411
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104412
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104414
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:386' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104416
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104418
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104419
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
104420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104421
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104423
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104425
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104426
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104429
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104430
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104431
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104433
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104435
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:387' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104437
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104439
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104440
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
104441
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104442
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104443
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104444
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104445
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104446
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104448
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL
|
|
104449
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104450
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104452
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104454
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:388' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104456
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104458
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
104461
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104464
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104467
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104470
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104473
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104476
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104479
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104482
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104485
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104488
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104491
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104494
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104497
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104498
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104499
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104501
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104502
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104504
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104505
|
+
[1m[35mSQL (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104507
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104508
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
104509
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104510
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104511
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104513
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104514
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104516
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104517
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104518
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104519
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104520
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104521
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104522
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104523
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104524
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104525
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104526
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104527
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104528
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104529
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104531
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104532
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104534
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104535
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.7ms)[0m [1mrollback transaction[0m
|
|
104539
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104542
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104545
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104548
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104551
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104554
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104557
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104560
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104563
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104566
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104569
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104572
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104575
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104578
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104581
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104584
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104587
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104590
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104593
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104596
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104599
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104602
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104605
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104608
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104611
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104614
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104617
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104620
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104623
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104626
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104629
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104632
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104635
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104638
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104641
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104644
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104647
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104648
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104649
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104651
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104652
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
104653
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104654
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104655
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104656
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104657
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104658
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104660
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104662
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104663
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104664
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104665
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104666
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104669
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104670
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104671
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104672
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104673
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104674
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104675
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104676
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104678
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104679
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104681
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104682
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104683
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104684
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104685
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104686
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104687
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104689
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104690
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104691
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104692
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104693
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104694
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104695
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104696
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104697
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104698
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104699
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104700
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104702
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104703
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104704
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104705
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104706
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104708
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104709
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104711
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104712
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104713
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104714
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104715
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104716
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104717
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104719
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104720
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104721
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104722
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104723
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
104724
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
104728
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104731
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104734
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104737
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104740
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104743
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104746
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104749
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104752
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104755
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104758
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104761
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104764
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104765
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:395' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104766
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104769
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104772
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104775
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104778
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104779
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:396' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104780
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104783
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104784
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:397' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104785
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104788
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104791
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104794
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104797
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104800
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104801
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:398' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104802
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:399' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:398' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104808
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104811
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104814
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104817
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104820
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104823
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104824
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104825
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104828
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104829
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104830
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104832
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104834
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:400' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104836
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104838
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104839
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
104840
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104841
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:401' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104843
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104844
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:401' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104847
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
104850
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104851
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104852
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104854
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104856
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:402' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104858
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104860
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104861
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
104862
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104863
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104865
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104867
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104868
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104871
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104872
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104873
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104875
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104877
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:403' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104879
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104881
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104882
|
+
[1m[35m (12.0ms)[0m rollback transaction
|
|
104883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104884
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104886
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104888
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104889
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104892
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104893
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104894
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104896
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:404' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104898
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104900
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104901
|
+
[1m[35m (23.1ms)[0m rollback transaction
|
|
104902
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104903
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104905
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
104908
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104911
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
104912
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104913
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104915
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104917
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:405' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104919
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104921
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104922
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
|
104923
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104924
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104925
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
104927
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
104928
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
104929
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
104930
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL
|
|
104931
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104932
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104934
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
104936
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:406' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104938
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
104940
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
104943
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104946
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104949
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104952
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104953
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104954
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104956
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104959
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104962
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104965
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104968
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104969
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:407' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104970
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104973
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104976
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104979
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104982
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
104983
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:408' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104984
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104987
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
104988
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:409' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
104989
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104992
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
104995
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
104998
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105001
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105004
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105005
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:410' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105006
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:411' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:410' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105012
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105015
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105018
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
105021
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105024
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105027
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105030
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105033
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105034
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" IS NULL ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105035
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105038
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105039
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105040
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105042
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105044
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:412' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105046
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105048
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105049
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
105050
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105051
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:413' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105053
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105054
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:413' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105057
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
105060
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105061
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105062
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105064
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105066
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:414' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105068
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105070
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105071
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
105072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105073
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105075
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105077
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105078
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105081
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105082
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105083
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105085
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105087
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:415' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105089
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105091
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105092
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
|
105093
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105094
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105096
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105098
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105099
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105102
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105103
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105104
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105106
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:416' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105108
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105110
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105111
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
105112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105113
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105115
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105117
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105118
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105121
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105122
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105123
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105125
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105127
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:417' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105129
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105131
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105132
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
|
105133
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105134
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105135
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105137
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105138
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105139
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105140
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" IS NULL
|
|
105141
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105142
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105144
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105146
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:418' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105148
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105150
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
105153
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105156
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105159
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105162
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105165
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105166
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:419' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105167
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105170
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105173
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105176
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105179
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105182
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105185
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105188
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105191
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105194
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105197
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105200
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105203
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105206
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105209
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105212
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105215
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105218
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105221
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105224
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105227
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105230
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105233
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105236
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105237
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105238
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105240
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105241
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
105242
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105243
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105244
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105245
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105246
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105247
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105248
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105249
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105250
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105252
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105253
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105254
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105255
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105256
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105258
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105259
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105261
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105262
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105263
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105264
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105265
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105266
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105267
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105268
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (1.2ms)[0m [1mrollback transaction[0m
|
|
105272
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105275
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105278
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105281
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105284
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105287
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105290
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105293
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105296
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105299
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105302
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105305
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105308
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105311
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105314
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105317
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105320
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105323
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105326
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
105329
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105330
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105331
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105333
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105334
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
105335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105336
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105337
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105338
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105339
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105340
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105341
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105342
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105343
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105344
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105345
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105346
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105347
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105348
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105349
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105350
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105351
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105352
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105353
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105354
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105355
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
105356
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105357
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105358
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105359
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105360
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
105361
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
105362
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105363
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
105364
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person10') LIMIT 1[0m
|
|
105365
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
105372
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105373
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105374
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person11') LIMIT 1
|
|
105375
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person11@example.com' LIMIT 1[0m
|
|
105376
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105377
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
105383
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105384
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
105385
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person12') LIMIT 1[0m
|
|
105386
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
105394
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105395
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105396
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person13') LIMIT 1
|
|
105397
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person13@example.com' LIMIT 1[0m
|
|
105398
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105399
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
105405
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105406
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105407
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person14') LIMIT 1[0m
|
|
105408
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
105416
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105417
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:425' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105418
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105419
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person15') LIMIT 1[0m
|
|
105420
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
105433
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
105434
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:426' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105435
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105436
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person16') LIMIT 1[0m
|
|
105437
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:426' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
105452
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
105454
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person17') LIMIT 1[0m
|
|
105455
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105459
|
+
Ddr::Models::Error
|
|
105460
|
+
Usergroups are ["public", "registered"]
|
|
105461
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:427' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
|
105469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105470
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105472
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105474
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105475
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105478
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105479
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105480
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person18') LIMIT 1
|
|
105481
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person18@example.com' LIMIT 1[0m
|
|
105482
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105483
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105485
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:428' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (45.9ms)[0m rollback transaction
|
|
105495
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105496
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105498
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105500
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105501
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:429' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105504
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105505
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105506
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person19') LIMIT 1
|
|
105507
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person19@example.com' LIMIT 1[0m
|
|
105508
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105509
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
105524
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105525
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105527
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105529
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105530
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105533
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105535
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person20') LIMIT 1
|
|
105536
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person20@example.com' LIMIT 1[0m
|
|
105537
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105538
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105540
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:430' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (1.2ms)[0m rollback transaction
|
|
105555
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
105556
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105558
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105560
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105561
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105564
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105565
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105566
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person21') LIMIT 1
|
|
105567
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person21@example.com' LIMIT 1[0m
|
|
105568
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105569
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105571
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105573
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:431' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
105583
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105584
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105586
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105588
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105589
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105592
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105593
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105594
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person22') LIMIT 1
|
|
105595
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person22@example.com' LIMIT 1[0m
|
|
105596
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105597
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105599
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:432' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
|
105614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105615
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105617
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105619
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105620
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105623
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105624
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105625
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person23') LIMIT 1
|
|
105626
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person23@example.com' LIMIT 1[0m
|
|
105627
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105628
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105630
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105632
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:433' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
105647
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105648
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105650
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105652
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105653
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105656
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105657
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105658
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person24') LIMIT 1
|
|
105659
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person24@example.com' LIMIT 1[0m
|
|
105660
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105661
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105663
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:434' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
105674
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105675
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
105676
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person25') LIMIT 1[0m
|
|
105677
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105681
|
+
Ddr::Models::Error
|
|
105682
|
+
Usergroups are ["public", "registered"]
|
|
105683
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105684
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.4ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105686
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105688
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:435' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105690
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
105699
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105700
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105702
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105704
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105705
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105708
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105709
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105710
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person26') LIMIT 1
|
|
105711
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person26@example.com' LIMIT 1[0m
|
|
105712
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105713
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105715
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:436' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
105730
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
105732
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person27') LIMIT 1[0m
|
|
105733
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105737
|
+
Ddr::Models::Error
|
|
105738
|
+
Usergroups are ["public", "registered"]
|
|
105739
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105740
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105742
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105744
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:437' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105746
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
|
105759
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105760
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105762
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105764
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105765
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105768
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105769
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105770
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person28') LIMIT 1
|
|
105771
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person28@example.com' LIMIT 1[0m
|
|
105772
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105773
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105775
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105777
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:438' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
|
105792
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105793
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105795
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105797
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105798
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105801
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105802
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105803
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person29') LIMIT 1
|
|
105804
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person29@example.com' LIMIT 1[0m
|
|
105805
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105806
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105808
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:439' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
105823
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105824
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105826
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105828
|
+
[1m[35m (0.2ms)[0m SAVEPOINT active_record_1
|
|
105829
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "events" ("created_at", "detail", "event_date_time", "exception", "outcome", "pid", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.2ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105832
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105833
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105834
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person30') LIMIT 1
|
|
105835
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person30@example.com' LIMIT 1[0m
|
|
105836
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105837
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105839
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36mDdr::Events::VirusCheckEvent Load (0.1ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::VirusCheckEvent') AND "events"."pid" = 'changeme:440' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
105850
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
105852
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person31') LIMIT 1[0m
|
|
105853
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
|
105857
|
+
Ddr::Models::Error
|
|
105858
|
+
Usergroups are ["public", "registered"]
|
|
105859
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105860
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105862
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105864
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36mDdr::Events::FixityCheckEvent Load (0.3ms)[0m [1mSELECT "events".* FROM "events" WHERE "events"."type" IN ('Ddr::Events::FixityCheckEvent') AND "events"."pid" = 'changeme:441' ORDER BY event_date_time DESC LIMIT 1[0m
|
|
105866
|
+
[1m[35mDdr::Events::VirusCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
105875
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105876
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105878
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person32') LIMIT 1
|
|
105879
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person32@example.com' LIMIT 1[0m
|
|
105880
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105881
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
105894
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105895
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105896
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person33') LIMIT 1
|
|
105897
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person33@example.com' LIMIT 1[0m
|
|
105898
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105899
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
105901
|
+
Ddr::Models::Error
|
|
105902
|
+
Usergroups are ["public", "registered"]
|
|
105903
|
+
[1m[35mDdr::Events::FixityCheckEvent Load (0.2ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
105911
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105912
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105913
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person34') LIMIT 1
|
|
105914
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person34@example.com' LIMIT 1[0m
|
|
105915
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105916
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (13.8ms)[0m rollback transaction
|
|
105931
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105932
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105933
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person35') LIMIT 1[0m
|
|
105934
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
|
105946
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105948
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person36') LIMIT 1
|
|
105949
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person36@example.com' LIMIT 1[0m
|
|
105950
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105951
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
105966
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
105967
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
105968
|
+
[1m[36mUser Exists (0.3ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person37') LIMIT 1[0m
|
|
105969
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
105986
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
105987
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
105988
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person38') LIMIT 1
|
|
105989
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person38@example.com' LIMIT 1[0m
|
|
105990
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
105991
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
|
106001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106002
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
106003
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person39') LIMIT 1[0m
|
|
106004
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (6.5ms)[0m [1mrollback transaction[0m
|
|
106021
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106022
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106023
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person40') LIMIT 1
|
|
106024
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person40@example.com' LIMIT 1[0m
|
|
106025
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
106026
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
|
106037
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
106039
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person41') LIMIT 1[0m
|
|
106040
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
106053
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106055
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person42') LIMIT 1
|
|
106056
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person42@example.com' LIMIT 1[0m
|
|
106057
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
106058
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
106069
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106070
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
106071
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person43') LIMIT 1[0m
|
|
106072
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
106080
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106081
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106082
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person44') LIMIT 1
|
|
106083
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person44@example.com' LIMIT 1[0m
|
|
106084
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
106085
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.9ms)[0m rollback transaction
|
|
106091
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106092
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
106093
|
+
[1m[36mUser Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person45') LIMIT 1[0m
|
|
106094
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
|
106102
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106103
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106104
|
+
[1m[35mUser Exists (0.1ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person46') LIMIT 1
|
|
106105
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person46@example.com' LIMIT 1[0m
|
|
106106
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
106107
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
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
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
106113
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106114
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
106115
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person47') LIMIT 1[0m
|
|
106116
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
106124
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106127
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106130
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106133
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106136
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106139
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106142
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106145
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106148
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106151
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106154
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106157
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106160
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106163
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106166
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106169
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106172
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106175
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106178
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106181
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106184
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
106187
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106190
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106193
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106196
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106199
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106202
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106205
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106208
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106211
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106214
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106217
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106220
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106223
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106226
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106227
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106228
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
106230
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106231
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
|
106232
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106233
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106234
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106235
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106236
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106237
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106238
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106239
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106240
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106241
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106242
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106243
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106245
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106246
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106247
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106248
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106249
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106250
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106251
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106252
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
|
106253
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106254
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106255
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106257
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
|
106258
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "events" ("created_at", "event_date_time", "exception", "outcome", "software", "summary", "type", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
|
106262
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106265
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106268
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106271
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106274
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106277
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106280
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106283
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
106284
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106285
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person49') LIMIT 1
|
|
106286
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person49@example.com' LIMIT 1[0m
|
|
106287
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
106288
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
106290
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106291
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
106292
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106293
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
|
106294
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person50') LIMIT 1[0m
|
|
106295
|
+
[1m[35mUser Exists (0.1ms)[0m 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
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at", "username") VALUES (?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
|
106301
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106304
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106305
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106306
|
+
[1m[35mUser Exists (0.2ms)[0m SELECT 1 AS one FROM "users" WHERE LOWER("users"."username") = LOWER('person51') LIMIT 1
|
|
106307
|
+
[1m[36mUser Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "users" WHERE "users"."email" = 'person51@example.com' LIMIT 1[0m
|
|
106308
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
|
106309
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
106311
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106312
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
|
106313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106314
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106315
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106316
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106317
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106318
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106319
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106320
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106321
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106322
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
106323
|
+
Although test:1 was found in Solr, it doesn't seem to exist in Fedora. The index is out of synch.
|
|
106324
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
106325
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
106326
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "events" WHERE "events"."type" IN ('Ddr::Events::UpdateEvent') AND "events"."pid" IS NULL
|
|
106327
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106328
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
106330
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
106333
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
106334
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
|
106335
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
|
106337
|
+
[1m[35mDdr::Events::UpdateEvent Load (0.3ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
|
106340
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106343
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106346
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106350
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106353
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106356
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106359
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106362
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106365
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106368
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106371
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106374
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
106377
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|