Skip to content

Commit 38a1855

Browse files
PavelEfarinovgithub-actions[bot]
authored andcommitted
fix: add cpu:4 to ram:32 req (#27009)
1 parent 939e90e commit 38a1855

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/last_commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
78aa6fa75eba124b91b200bfe76c67e94ee968a4
1+
97e6c30a04f89ebeb0f4b596d323e0434c346e54

tests/integration/topic/describe_topic.cpp

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,6 @@ TEST_F(Describe, TEST_NAME(Location)) {
120120
}
121121

122122
TEST_F(Describe, TEST_NAME(MetricsLevel)) {
123-
char* ydbVersion = std::getenv("YDB_VERSION");
124-
if (ydbVersion != nullptr && std::string(ydbVersion) != "trunk") {
125-
GTEST_SKIP() << "Skipping test for YDB version " << ydbVersion;
126-
}
127-
128123
TTopicClient client(MakeDriver());
129124

130125
// const std::uint32_t MetricsLevelDisabled = 0;
@@ -154,7 +149,7 @@ TEST_F(Describe, TEST_NAME(MetricsLevel)) {
154149
};
155150

156151
{
157-
const std::string topic(GetTopicPath("topic-with-counters"));
152+
const std::string topic("topic-with-counters");
158153
createTopic(topic, MetricsLevelDetailed);
159154
checkFlag(topic, MetricsLevelDetailed);
160155
setMetricsLevel(topic, MetricsLevelObject);
@@ -174,7 +169,7 @@ TEST_F(Describe, TEST_NAME(MetricsLevel)) {
174169
}
175170

176171
{
177-
const std::string topic(GetTopicPath("topic-without-counters-by-default"));
172+
const std::string topic("topic-without-counters-by-default");
178173
auto res = client.CreateTopic(topic).GetValueSync();
179174
ASSERT_TRUE(res.IsSuccess());
180175
Y_ENSURE(checkFlag(topic, {}));
@@ -190,7 +185,7 @@ TEST_F(Describe, TEST_NAME(MetricsLevel)) {
190185
}
191186

192187
{
193-
const std::string topic(GetTopicPath("topic-without-counters"));
188+
const std::string topic("topic-without-counters");
194189
createTopic(topic, MetricsLevelObject);
195190
Y_ENSURE(checkFlag(topic, MetricsLevelObject));
196191
setMetricsLevel(topic, MetricsLevelDetailed);

0 commit comments

Comments
 (0)