running clang-format
This commit is contained in:
parent
c1c177addc
commit
d326e28c92
|
@ -1432,19 +1432,18 @@ int main(int argc, char **argv) {
|
||||||
std::cerr << "The test will create "
|
std::cerr << "The test will create "
|
||||||
<< (config.max_concurrent_streams * config.nconns)
|
<< (config.max_concurrent_streams * config.nconns)
|
||||||
<< " total requests." << std::endl;
|
<< " total requests." << std::endl;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
std::cout << "-C, -n: warning: number of requests conflict. "
|
std::cout << "-C, -n: warning: number of requests conflict. "
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
std::cout << "The smaller of the two will be chosen and the test will "
|
std::cout << "The smaller of the two will be chosen and the test will "
|
||||||
<< "create "
|
<< "create "
|
||||||
<< std::min(config.nreqs,
|
<< std::min(
|
||||||
|
config.nreqs,
|
||||||
(size_t)(config.max_concurrent_streams * config.nconns))
|
(size_t)(config.max_concurrent_streams * config.nconns))
|
||||||
<< " total requests." << std::endl;
|
<< " total requests." << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Headers shared_nva;
|
Headers shared_nva;
|
||||||
shared_nva.emplace_back(":scheme", config.scheme);
|
shared_nva.emplace_back(":scheme", config.scheme);
|
||||||
if (config.port != config.default_port) {
|
if (config.port != config.default_port) {
|
||||||
|
|
Loading…
Reference in New Issue