aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvtyulb <vtyulb@yandex-team.ru>2022-02-10 16:50:24 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:24 +0300
commit5f3d238c7ac51f3b9d8b84e7b062bba37bd5fe2c (patch)
treec0564448033e99d0849f5d666c7d89f88992315f
parentef1186a3ef541b1a1c08c06e9f826d45dddce8b0 (diff)
downloadydb-5f3d238c7ac51f3b9d8b84e7b062bba37bd5fe2c.tar.gz
Restoring authorship annotation for <vtyulb@yandex-team.ru>. Commit 1 of 2.
-rw-r--r--build/ya.conf.json70
-rw-r--r--library/cpp/json/fast_sax/parser.h2
2 files changed, 36 insertions, 36 deletions
diff --git a/build/ya.conf.json b/build/ya.conf.json
index 5f7cc875d6..b4397ebcea 100644
--- a/build/ya.conf.json
+++ b/build/ya.conf.json
@@ -293,9 +293,9 @@
"appteka": {
"description": "Run local appteka instance"
},
- "news": {
- "description": "Run news team tools"
- },
+ "news": {
+ "description": "Run news team tools"
+ },
"go": {
"description": "Run go tool (1.17.6)"
},
@@ -4756,28 +4756,28 @@
}
]
},
- "news": {
- "tools": {
- "news": {
- "bottle": "news",
- "executable": "news_launcher"
- }
- },
- "platforms": [
- {
- "host": {
- "os": "LINUX"
- },
- "default": true
- },
- {
- "host": {
- "os": "DARWIN"
- },
- "default": true
- }
- ]
- },
+ "news": {
+ "tools": {
+ "news": {
+ "bottle": "news",
+ "executable": "news_launcher"
+ }
+ },
+ "platforms": [
+ {
+ "host": {
+ "os": "LINUX"
+ },
+ "default": true
+ },
+ {
+ "host": {
+ "os": "DARWIN"
+ },
+ "default": true
+ }
+ ]
+ },
"golang_1_17_6": {
"tools": {
"golang": {
@@ -7365,17 +7365,17 @@
]
}
},
- "news": {
- "formula": {
+ "news": {
+ "formula": {
"sandbox_id": 1088628929,
- "match": "news_launcher"
- },
- "executable": {
- "news_launcher": [
- "news_launcher"
- ]
- }
- },
+ "match": "news_launcher"
+ },
+ "executable": {
+ "news_launcher": [
+ "news_launcher"
+ ]
+ }
+ },
"golang_1.17.6": {
"formula": {
"sandbox_id": [
diff --git a/library/cpp/json/fast_sax/parser.h b/library/cpp/json/fast_sax/parser.h
index b5f031dd9e..f52839ba1a 100644
--- a/library/cpp/json/fast_sax/parser.h
+++ b/library/cpp/json/fast_sax/parser.h
@@ -6,7 +6,7 @@ namespace NJson {
bool ReadJsonFast(TStringBuf in, TJsonCallbacks* callbacks);
inline bool ValidateJsonFast(TStringBuf in, bool throwOnError = false) {
- Y_ASSERT(false); // this method is broken, see details in IGNIETFERRO-1243. Use NJson::ValidateJson instead, or fix this one before using
+ Y_ASSERT(false); // this method is broken, see details in IGNIETFERRO-1243. Use NJson::ValidateJson instead, or fix this one before using
TJsonCallbacks c(throwOnError);
return ReadJsonFast(in, &c);
}