Skip to content
This repository was archived by the owner on Jan 17, 2023. It is now read-only.

Commit 4885c54

Browse files
author
Alex Collins
committed
Merge pull request #125 from atc-/0.96.1
0.96.1
2 parents a908ec9 + bcb2337 commit 4885c54

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

grails-app/conf/DataSource.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ environments {
1818
development {
1919
dataSource {
2020
dbCreate = "create-drop" // one of 'create', 'create-drop', 'update', 'validate', ''
21-
url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE"
21+
url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;FILE_LOCK=SOCKET"
2222
}
2323
}
2424
test {
2525
dataSource {
2626
dbCreate = "update"
27-
url = "jdbc:h2:file:/var/lib/h2/testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE"
27+
url = "jdbc:h2:file:/var/lib/h2/testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;FILE_LOCK=SOCKET"
2828
}
2929
}
3030
production {
3131
dataSource {
3232
dbCreate = "update"
33-
url = "jdbc:h2:file:/var/lib/h2/prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE"
33+
url = "jdbc:h2:file:/var/lib/h2/prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;FILE_LOCK=SOCKET"
3434
properties {
3535
// See http://grails.org/doc/latest/guide/conf.html#dataSource for documentation
3636
jmxEnabled = true

src/groovy/docker/registry/web/support/Image.groovy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package docker.registry.web.support
22

33
class Image {
4+
String checksum
45
String displayName
56
String pullName
67
String architecture
@@ -22,7 +23,8 @@ class Image {
2223
@Override
2324
public String toString() {
2425
return "Image{" +
25-
"displayName='" + displayName + '\'' +
26+
"checksum='" + checksum + '\'' +
27+
", displayName='" + displayName + '\'' +
2628
", pullName='" + pullName + '\'' +
2729
", architecture='" + architecture + '\'' +
2830
", author='" + author + '\'' +

0 commit comments

Comments
 (0)