Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure ad and cart service do not generate errors by default #1648

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ the release.

## Unreleased

* ([chore] ensure ad and cart service do not generate errors by default
([#1641](https://github.com/open-telemetry/opentelemetry-demo/pull/1641))

## 1.11.0

* [accountingservice] convert from Go service to .NET service, uses
Expand Down
10 changes: 8 additions & 2 deletions src/flagd/demo.flagd.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"targeting": {
"fractional": [
["on", 10],
["off", 90]
["off", 100]
]
}
},
Expand All @@ -68,7 +68,13 @@
"on": true,
"off": false
},
"defaultVariant": "off"
"defaultVariant": "off",
"targeting": {
"fractional": [
["on", 10],
["off", 100]
]
}
},
"paymentServiceFailure": {
"description": "Fail payment service charge requests",
Expand Down
Loading