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

Commit

Permalink
Merge pull request #125 from atc-/0.96.1
Browse files Browse the repository at this point in the history
0.96.1
  • Loading branch information
Alex Collins committed Jan 4, 2015
2 parents a908ec9 + bcb2337 commit 4885c54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions grails-app/conf/DataSource.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ environments {
development {
dataSource {
dbCreate = "create-drop" // one of 'create', 'create-drop', 'update', 'validate', ''
url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE"
url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;FILE_LOCK=SOCKET"
}
}
test {
dataSource {
dbCreate = "update"
url = "jdbc:h2:file:/var/lib/h2/testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE"
url = "jdbc:h2:file:/var/lib/h2/testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;FILE_LOCK=SOCKET"
}
}
production {
dataSource {
dbCreate = "update"
url = "jdbc:h2:file:/var/lib/h2/prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE"
url = "jdbc:h2:file:/var/lib/h2/prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;FILE_LOCK=SOCKET"
properties {
// See http://grails.org/doc/latest/guide/conf.html#dataSource for documentation
jmxEnabled = true
Expand Down
4 changes: 3 additions & 1 deletion src/groovy/docker/registry/web/support/Image.groovy
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package docker.registry.web.support

class Image {
String checksum
String displayName
String pullName
String architecture
Expand All @@ -22,7 +23,8 @@ class Image {
@Override
public String toString() {
return "Image{" +
"displayName='" + displayName + '\'' +
"checksum='" + checksum + '\'' +
", displayName='" + displayName + '\'' +
", pullName='" + pullName + '\'' +
", architecture='" + architecture + '\'' +
", author='" + author + '\'' +
Expand Down

0 comments on commit 4885c54

Please sign in to comment.