2021/12/13 23:00:17 [debug] 4148592#4148592: epoll add event: fd:8 op:1 ev:10000001
2021/12/13 23:00:17 [debug] 4148593#4148593: epoll add event: fd:8 op:1 ev:10000001
2021/12/13 23:00:17 [debug] 4148594#4148594: epoll add event: fd:8 op:1 ev:10000001
2021/12/13 23:00:25 [debug] 4148542#4148542: accept on 0.0.0.0:80, ready: 1
2021/12/13 23:00:25 [debug] 4148542#4148542: posix_memalign: 00005574D87FAE90:512 @16
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 accept: ***.**.**.**:47498 fd:58 // тут мой ip
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 event timer add: 58: 60000:12037415010
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 reusable connection: 1
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 epoll add event: fd:58 op:1 ev:80002001
2021/12/13 23:00:25 [debug] 4148542#4148542: accept() not ready (11: Resource temporarily unavailable)
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 http wait request handler
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 malloc: 00005574D873B600:1024
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 recv: eof:0, avail:-1
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 recv: fd:58 169 of 1024
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 reusable connection: 0
2021/12/13 23:00:25 [debug] 4148542#4148542: *1 posix_memalign: 00005574D8784B50:4096 @16
location /api {
proxy_pass http://localhost:8080/api;
$sessionId = $driver->getWebDriver()->getSessionID();
$commandExecutorUrl = $driver->getWebDriver()->getCommandExecutor()->getAddressOfRemoteServer();
// Это просто строки, сохраняем их где-нибудь.
$driver2 = RemoteWebDriver::createBySessionID($sessionId, $commandExecutorUrl, $connectionTimeout);
if ($constraint->minHeight) {
if (!ctype_digit((string) $constraint->minHeight)) {
throw new ConstraintDefinitionException(sprintf('"%s" is not a valid minimum height.', $constraint->minHeight));
}
if ($height < $constraint->minHeight) {
$this->context->buildViolation($constraint->minHeightMessage)
->setParameter('{{ height }}', $height)
->setParameter('{{ min_height }}', $constraint->minHeight)
->setCode(Image::TOO_LOW_ERROR)
->addViolation();
return;
}
}