Skip to content

Commit 2a635ed

Browse files
dev: fix linter
1 parent d793d1e commit 2a635ed

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

slo/src/AdoNet/SloContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ protected override Task<YdbDataSource> CreateClient(Config config)
105105
return Task.FromResult(new YdbDataSource(new YdbConnectionStringBuilder
106106
{ UseTls = useTls, Host = host, Port = int.Parse(port), Database = config.Db, LoggerFactory = Factory }));
107107
}
108-
}
108+
}

slo/src/Internal/SloContext.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -172,19 +172,19 @@ Task ShootingTask(RateLimiter rateLimitPolicy, string operationType,
172172
{
173173
Buckets =
174174
[
175-
0.001, // 1 ms
176-
0.002, // 2 ms
177-
0.003, // 3 ms
178-
0.004, // 4 ms
179-
0.005, // 5 ms
175+
0.001, // 1 ms
176+
0.002, // 2 ms
177+
0.003, // 3 ms
178+
0.004, // 4 ms
179+
0.005, // 5 ms
180180
0.0075, // 7.5 ms
181-
0.010, // 10 ms
182-
0.020, // 20 ms
183-
0.050, // 50 ms
184-
0.100, // 100 ms
185-
0.200, // 200 ms
186-
0.500, // 500 ms
187-
1.000 // 1 s
181+
0.010, // 10 ms
182+
0.020, // 20 ms
183+
0.050, // 50 ms
184+
0.100, // 100 ms
185+
0.200, // 200 ms
186+
0.500, // 500 ms
187+
1.000 // 1 s
188188
]
189189
}
190190
);

slo/src/TableService/SloContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ protected override async Task<TableClient> CreateClient(Config config)
8181
{
8282
return new TableClient(await Driver.CreateInitialized(new DriverConfig(config.Endpoint, config.Db), Factory));
8383
}
84-
}
84+
}

0 commit comments

Comments
 (0)