Skip to content

Commit

Permalink
fix(debezium): disable json logging in adhoc (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
omBratteng authored Dec 20, 2024
1 parent e292f44 commit 8d0ecb9
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 53 deletions.
101 changes: 51 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"homepage": "https://github.com/dailydotdev/pulumi-common#readme",
"dependencies": {
"@google-cloud/pubsub": "^4.9.0",
"@pulumi/gcp": "^8.10.2",
"@pulumi/gcp": "^8.12.0",
"@pulumi/kubernetes": "^4.19.0",
"@pulumi/pulumi": "^3.143.0",
"knex": "^3.1.0",
Expand All @@ -29,8 +29,8 @@
"yaml": "^2.6.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand Down
4 changes: 4 additions & 0 deletions src/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ function getDebeziumProps(
propsStr +=
'\ndebezium.source.topic.prefix=t\ndebezium.source.tombstones.on.delete=false';
}
if (!propsStr.includes('quarkus.log.console.json')) {
propsStr += '\nquarkus.log.console.json=false';
}

return `${propsStr}\ndebezium.sink.pubsub.address=pubsub:8085\ndebezium.sink.pubsub.project.id=local`;
}
return propsStr;
Expand Down

0 comments on commit 8d0ecb9

Please sign in to comment.