We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 394eca2 commit 5e2aaacCopy full SHA for 5e2aaac
1 file changed
dynamic-control/src/main/java/io/opentelemetry/contrib/dynamic/policy/source/SourceFormat.java
@@ -13,7 +13,8 @@
13
/** Supported source formats and their parser dispatch. */
14
public enum SourceFormat {
15
KEYVALUE("keyvalue", KeyValueSourceWrapper::parse),
16
- JSON("json", JsonSourceWrapper::parse);
+ JSON("json", JsonSourceWrapper::parse), // Will remove
17
+ JSONKEYVALUE("jsonkeyvalue", JsonSourceWrapper::parse);
18
19
private final String configValue;
20
private final SourceParser parser;
0 commit comments