Skip to content

Commit

Permalink
Add owner field for all db kinds
Browse files Browse the repository at this point in the history
configurator complains at startup about the missing owner field:

1970-01-14T03:25:38.425801Z [45] user.err configurator [] Configurator
DB_KIND_CONFIG_ERROR {"file":"/etc/palm/db/kinds/org.webosports.cdav.contactset"} Cannot
determine owner of db kind for /etc/palm/db/kinds/org.webosports.cdav.contactset
1970-01-14T03:25:38.426442Z [45] user.err configurator [] Configurator INVALID_JSON
{"MSGID":"CONFIGURATOR_ERROR", "CAUSE":"The json string is
wrong.","JSON":"{\"config\":\"{\n\t\"id\":
\"org.webosports.cdav.contactset:1\",\n\t\"sync\": false,\n\t\"indexes\":
[\n\t\t{\n\t\t\t\"name\": \"accountId\",\n\t\t\t\"props\": [ ..."}

[...]

Signed-off-by: Simon Busch <morphis@gravedo.de>
  • Loading branch information
morphis committed Mar 16, 2014
1 parent f141b95 commit fd14571
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.account.calendar:1",
"sync": true,
"owner": "org.webosports.cdav.service",
"indexes": [
{
"name": "accountId",
Expand Down
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.account.config:1",
"sync": true,
"owner": "org.webosports.cdav.service",
"indexes": [
{
"name": "accountId",
Expand Down
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.account.contacts:1",
"sync": true,
"owner": "org.webosports.cdav.service",
"indexes": [
{
"name": "accountId",
Expand Down
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.calendar:1",
"sync": false,
"owner": "org.webosports.cdav.service",
"extends": [
"com.palm.calendar:1"
],
Expand Down
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.calendarevent:1",
"sync": false,
"owner": "org.webosports.cdav.service",
"extends": [
"com.palm.calendarevent:1"
],
Expand Down
1 change: 1 addition & 0 deletions service/configuration/db/kinds/org.webosports.cdav.contact
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.contact:1",
"sync": false,
"owner": "org.webosports.cdav.service",
"extends": [
"com.palm.contact:1"
],
Expand Down
@@ -1,6 +1,7 @@
{
"id": "org.webosports.cdav.contactset:1",
"sync": false,
"owner": "org.webosports.cdav.service",
"indexes": [
{
"name": "accountId",
Expand Down

0 comments on commit fd14571

Please sign in to comment.